diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-01 16:24:32 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-01 16:24:32 +0000 |
commit | b9f5b823399c8d5d88f2976726e3fbe9cba157a3 (patch) | |
tree | 1b01a7acc177ba3a732079855e40d521d182875b | |
parent | 6d553ef200b51e029531d7b2173843d461c55828 (diff) | |
download | busybox-w32-b9f5b823399c8d5d88f2976726e3fbe9cba157a3.tar.gz busybox-w32-b9f5b823399c8d5d88f2976726e3fbe9cba157a3.tar.bz2 busybox-w32-b9f5b823399c8d5d88f2976726e3fbe9cba157a3.zip |
Another refinement, this time from Larry.
-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 26d1376a0..7c3deb20e 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 26d1376a0..7c3deb20e 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' ' ' |