packages/Xorg/lib/edje/patches/001-edje_cc-native.patch
mirko 986eb4eafc - update to Xorg X11R7.4 and reorganization of the xorg-section
- added tslib
 - added e17 and related efl-libs


git-svn-id: svn://svn.openwrt.org/openwrt/packages@13238 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-11-16 19:31:42 +00:00

19 lines
733 B
Diff

diff -ruN edje.orig/src/bin/edje_cc_parse.c edje/src/bin/edje_cc_parse.c
--- edje.orig/src/bin/edje_cc_parse.c 2008-10-08 03:40:17.000000000 +0200
+++ edje/src/bin/edje_cc_parse.c 2008-10-08 03:41:59.000000000 +0200
@@ -667,12 +667,12 @@
* Redirecting the output is required for MacOS 10.3, and works fine
* on other systems.
*/
- snprintf(buf, sizeof(buf), "cat %s | cpp -I%s %s > %s",
+ snprintf(buf, sizeof(buf), "cat %s | /usr/bin/cpp -I%s %s > %s",
file_in, inc, def, tmpn);
ret = system(buf);
if (ret < 0)
{
- snprintf(buf, sizeof(buf), "gcc -I%s %s -E -o %s %s",
+ snprintf(buf, sizeof(buf), "/usr/bin/gcc -I%s %s -E -o %s %s",
inc, def, tmpn, file_in);
ret = system(buf);
}