Enlightenment CVS committal

Author  : tsauerbeck
Project : e17
Module  : libs/edje

Dir     : e17/libs/edje/src/bin


Modified Files:
        edje_cc.c edje_decc.c 


Log Message:
output EET file can now be specified by -o, too. use that mode in build.sh
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/bin/edje_cc.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- edje_cc.c   24 Oct 2004 13:47:55 -0000      1.22
+++ edje_cc.c   16 Mar 2005 17:51:52 -0000      1.23
@@ -129,6 +129,11 @@
          {
             defines = evas_list_append(defines, mem_strdup(argv[i]));
          }
+       else if ((!strcmp(argv[i], "-o")) && (i < (argc - 1)))
+         {
+            i++;
+            file_out = argv[i];
+         }
        else if (!file_in)
          file_in = argv[i];
        else if (!file_out)
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/edje/src/bin/edje_decc.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- edje_decc.c 10 Dec 2004 16:03:42 -0000      1.7
+++ edje_decc.c 16 Mar 2005 17:51:52 -0000      1.8
@@ -263,7 +263,7 @@
          }
        f = fopen(out, "w");
        fprintf(f, "#!/bin/sh\n");
-       fprintf(f, "edje_cc $@ -id . -fd . main_edje_source.edc %s.eet\n", 
outdir);
+       fprintf(f, "edje_cc $@ -id . -fd . main_edje_source.edc -o %s.eet\n", 
outdir);
        fclose(f);
 
 #ifndef WIN32




-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to