aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xapplets/busybox.sh2
-rwxr-xr-xbusybox.sh2
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`
11test "${RAW}" != "" || exit 11test "${RAW}" != "" || exit
12if [ -d ${$BB_SRC_DIR:-.} ]; then cd $BB_SRC_DIR; fi 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' ' '
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`
11test "${RAW}" != "" || exit 11test "${RAW}" != "" || exit
12if [ -d ${$BB_SRC_DIR:-.} ]; then cd $BB_SRC_DIR; fi 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' ' '