summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-05-19 18:06:34 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-05-19 18:06:34 +0000
commit1d16efbff83c75de39b0b49c1d2a678683e5091d (patch)
tree15069d6b4314576922c740f0565f29ce94f8e40a /tools
parentc30ee8bc90aca5e629894d7a845e74373a15c02b (diff)
downloadrockbox-1d16efbff83c75de39b0b49c1d2a678683e5091d.tar.gz
rockbox-1d16efbff83c75de39b0b49c1d2a678683e5091d.zip
Reverted my "xargs ls" thing since it broke the build in a way that I'm not
entirely sure about. I'll rethink and make the fix differently. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13415 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rw-r--r--tools/makesrc.inc6
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/makesrc.inc b/tools/makesrc.inc
index 837a812d51..78d97f3283 100644
--- a/tools/makesrc.inc
+++ b/tools/makesrc.inc
@@ -8,11 +8,7 @@
8# 8#
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#
12# The usage of ls is only to make sure that we only output existing file names
13# to not confuse make and to produce a fairly decent error message to the
14# terminal.
15 11
16SRC := $(shell cat SOURCES | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \ 12SRC := $(shell cat SOURCES | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \
17$(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -include "config.h" - | \ 13$(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -include "config.h" - | \
18grep -v "^\#" | xargs ls) 14grep -v "^\#")