aboutsummaryrefslogtreecommitdiff
path: root/busybox.sh
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-17 00:42:47 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-02-17 00:42:47 +0000
commit4385711fb4e39d0bfa4aaccdaa20025a8e386dab (patch)
treed84d5ef8a6914a3a2b77c360471d195f0c32a8e2 /busybox.sh
parent807f849768fa37d38d60824fab72330c651edd43 (diff)
downloadbusybox-w32-4385711fb4e39d0bfa4aaccdaa20025a8e386dab.tar.gz
busybox-w32-4385711fb4e39d0bfa4aaccdaa20025a8e386dab.tar.bz2
busybox-w32-4385711fb4e39d0bfa4aaccdaa20025a8e386dab.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 git-svn-id: svn://busybox.net/trunk/busybox@1843 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'busybox.sh')
-rwxr-xr-xbusybox.sh6
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`
8test "${RAW}" != "" || exit 8test "${RAW}" != "" || exit
9cd ${2:-.} 9cd ${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.
12ls -1 $RAW 2>/dev/null | sed -e 's/\.c$/\.o/g' 12ls $RAW 2>/dev/null | tr '\n' ' '
13 13