Enlightenment CVS committal Author : technikolor Project : e17 Module : libs/edje
Dir : e17/libs/edje/src/bin Modified Files: edje_cc_parse.c Log Message: Don\'t assume cpp and gcc are always in /usr/bin... absolute paths removed =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/edje/src/bin/edje_cc_parse.c,v retrieving revision 1.36 retrieving revision 1.37 diff -u -3 -r1.36 -r1.37 --- edje_cc_parse.c 12 Sep 2005 09:43:49 -0000 1.36 +++ edje_cc_parse.c 30 Oct 2005 07:42:48 -0000 1.37 @@ -653,12 +653,12 @@ strcat(def, " "); } } - snprintf(buf, sizeof(buf), "cat %s | /usr/bin/cpp -I%s %s -E -o %s", + snprintf(buf, sizeof(buf), "cat %s | cpp -I%s %s -E -o %s", file_in, inc, def, tmpn); ret = system(buf); if (ret < 0) { - snprintf(buf, sizeof(buf), "/usr/bin/gcc -I%s %s -E -o %s %s", + snprintf(buf, sizeof(buf), "gcc -I%s %s -E -o %s %s", inc, def, tmpn, file_in); ret = system(buf); } ------------------------------------------------------- This SF.Net email is sponsored by the JBoss Inc. Get Certified Today * Register for a JBoss Training Course Free Certification Exam for All Training Attendees Through End of 2005 Visit http://www.jboss.com/services/certification for more information _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs