diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-03-10 08:19:54 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-03-10 08:19:54 +0000 |
commit | 64d3470541b76557dac7c6b35b15e821812b6f03 (patch) | |
tree | 571dc367cbfb3bfe4d7e69f46a324134886b9093 | |
parent | fe0e368d5ca62a1b97c783f6f4b4c1d4245f02b5 (diff) |
instead of hard coded gcc
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6180 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | tools/makesrc.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/makesrc.inc b/tools/makesrc.inc index 1499dadc94..78d97f3283 100644 --- a/tools/makesrc.inc +++ b/tools/makesrc.inc @@ -9,6 +9,6 @@ # The weird grep -v thing in here is due to Apple's stupidities and is needed # to make this do right when used on Mac OS X. -SRC := $(shell cat SOURCES | gcc -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \ +SRC := $(shell cat SOURCES | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \ $(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -include "config.h" - | \ grep -v "^\#") |