diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-01 14:54:35 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-01 14:54:35 +0000 |
commit | 6d553ef200b51e029531d7b2173843d461c55828 (patch) | |
tree | 66d08b5f5d7d5a5380233e55b8d13c96266a026e | |
parent | abde06593506d7b090cf17e6512d2d30b2710066 (diff) | |
download | busybox-w32-6d553ef200b51e029531d7b2173843d461c55828.tar.gz busybox-w32-6d553ef200b51e029531d7b2173843d461c55828.tar.bz2 busybox-w32-6d553ef200b51e029531d7b2173843d461c55828.zip |
Argh. Now we break non-pristine builds. Check a bit more carefully.
-Erik
-rwxr-xr-x | applets/busybox.sh | 2 | ||||
-rwxr-xr-x | busybox.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/applets/busybox.sh b/applets/busybox.sh index 6b25dff3b..26d1376a0 100755 --- a/applets/busybox.sh +++ b/applets/busybox.sh | |||
@@ -9,7 +9,7 @@ RAW=` \ | |||
9 | | tr A-Z a-z | sort | 9 | | tr A-Z a-z | sort |
10 | ` | 10 | ` |
11 | test "${RAW}" != "" || exit | 11 | test "${RAW}" != "" || exit |
12 | if [ -d $BB_SRC_DIR ]; then cd $BB_SRC_DIR; fi | 12 | if [ -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. |
15 | ls $RAW 2>/dev/null | tr '\n' ' ' | 15 | ls $RAW 2>/dev/null | tr '\n' ' ' |
diff --git a/busybox.sh b/busybox.sh index 6b25dff3b..26d1376a0 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 | ` |
11 | test "${RAW}" != "" || exit | 11 | test "${RAW}" != "" || exit |
12 | if [ -d $BB_SRC_DIR ]; then cd $BB_SRC_DIR; fi | 12 | if [ -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. |
15 | ls $RAW 2>/dev/null | tr '\n' ' ' | 15 | ls $RAW 2>/dev/null | tr '\n' ' ' |