summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-03-10 08:19:54 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-03-10 08:19:54 +0000
commit64d3470541b76557dac7c6b35b15e821812b6f03 (patch)
tree571dc367cbfb3bfe4d7e69f46a324134886b9093
parentfe0e368d5ca62a1b97c783f6f4b4c1d4245f02b5 (diff)
downloadrockbox-64d3470541b76557dac7c6b35b15e821812b6f03.tar.gz
rockbox-64d3470541b76557dac7c6b35b15e821812b6f03.zip
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.inc2
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 @@
9# The weird grep -v thing in here is due to Apple's stupidities and is needed 9# The weird grep -v thing in here is due to Apple's stupidities and is needed
10# to make this do right when used on Mac OS X. 10# to make this do right when used on Mac OS X.
11 11
12SRC := $(shell cat SOURCES | gcc -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \ 12SRC := $(shell cat SOURCES | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \
13$(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -include "config.h" - | \ 13$(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -include "config.h" - | \
14grep -v "^\#") 14grep -v "^\#")