diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-05-19 18:06:34 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-05-19 18:06:34 +0000 |
commit | 1d16efbff83c75de39b0b49c1d2a678683e5091d (patch) | |
tree | 15069d6b4314576922c740f0565f29ce94f8e40a /tools | |
parent | c30ee8bc90aca5e629894d7a845e74373a15c02b (diff) | |
download | rockbox-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.inc | 6 |
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 @@ # # 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. -# -# The usage of ls is only to make sure that we only output existing file names -# to not confuse make and to produce a fairly decent error message to the -# terminal. SRC := $(shell cat SOURCES | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) \ $(TARGET) $(DEFINES) $(EXTRA_DEFINES) -E -P -include "config.h" - | \ -grep -v "^\#" | xargs ls) +grep -v "^\#") |