aboutsummaryrefslogtreecommitdiff
path: root/busybox.sh
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-01 01:40:34 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-05-01 01:40:34 +0000
commit338f7024096e4edaabc8b4b919274b90f09a0b3c (patch)
tree2b9edb6ec300c1f1ac9e1bddb537d7e64acb67ef /busybox.sh
parent65335de13a1d8876c2b20b1b13ddc87339c5e0a5 (diff)
downloadbusybox-w32-338f7024096e4edaabc8b4b919274b90f09a0b3c.tar.gz
busybox-w32-338f7024096e4edaabc8b4b919274b90f09a0b3c.tar.bz2
busybox-w32-338f7024096e4edaabc8b4b919274b90f09a0b3c.zip
A patch from Larry to fix pristine source builds (again).
I just can't seem to _not_ break it. Sigh. git-svn-id: svn://busybox.net/trunk/busybox@2499 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'busybox.sh')
-rwxr-xr-xbusybox.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/busybox.sh b/busybox.sh
index 2f9a905f5..6b25dff3b 100755
--- a/busybox.sh
+++ b/busybox.sh
@@ -9,7 +9,7 @@ RAW=` \
9 | tr A-Z a-z | sort 9 | tr A-Z a-z | sort
10` 10`
11test "${RAW}" != "" || exit 11test "${RAW}" != "" || exit
12cd ${2:-.} 12if [ -d $BB_SRC_DIR ]; then cd $BB_SRC_DIR; fi
13# By running $RAW through "ls", we avoid listing 13# By running $RAW through "ls", we avoid listing
14# source files that don't exist. 14# source files that don't exist.
15ls $RAW 2>/dev/null | tr '\n' ' ' 15ls $RAW 2>/dev/null | tr '\n' ' '