diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-17 00:42:47 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-17 00:42:47 +0000 |
commit | 19f86207f5c9cdcd192295e3ac3130a40f180d39 (patch) | |
tree | d84d5ef8a6914a3a2b77c360471d195f0c32a8e2 /busybox.sh | |
parent | 69c8572f296380df78a20818ca9208b35b7dbd16 (diff) | |
download | busybox-w32-19f86207f5c9cdcd192295e3ac3130a40f180d39.tar.gz busybox-w32-19f86207f5c9cdcd192295e3ac3130a40f180d39.tar.bz2 busybox-w32-19f86207f5c9cdcd192295e3ac3130a40f180d39.zip |
Update the build system for pristine source directory builds. This
update is primarily work done by Larry Doolittle, but I did some
touchups of my own to make it work for me,
-Erik
Diffstat (limited to 'busybox.sh')
-rwxr-xr-x | busybox.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/busybox.sh b/busybox.sh index 547aca477..338298086 100755 --- a/busybox.sh +++ b/busybox.sh | |||
@@ -7,7 +7,7 @@ RAW=` \ | |||
7 | ` | 7 | ` |
8 | test "${RAW}" != "" || exit | 8 | test "${RAW}" != "" || exit |
9 | cd ${2:-.} | 9 | cd ${2:-.} |
10 | # I added in the extra "ls" so only source files that | 10 | # By running $RAW through "ls", we avoid listing |
11 | # actually exist will show up in the compile list. | 11 | # source files that don't exist. |
12 | ls -1 $RAW 2>/dev/null | sed -e 's/\.c$/\.o/g' | 12 | ls $RAW 2>/dev/null | tr '\n' ' ' |
13 | 13 | ||