diff options
Diffstat (limited to 'applets')
-rwxr-xr-x | applets/busybox.mkll | 3 | ||||
-rwxr-xr-x | applets/busybox.sh | 3 | ||||
-rwxr-xr-x | applets/install.sh | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/applets/busybox.mkll b/applets/busybox.mkll index 81b329ad8..4e15e1611 100755 --- a/applets/busybox.mkll +++ b/applets/busybox.mkll | |||
@@ -7,6 +7,9 @@ | |||
7 | 7 | ||
8 | # Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov> | 8 | # Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov> |
9 | 9 | ||
10 | export LC_ALL=POSIX | ||
11 | export LC_CTYPE=POSIX | ||
12 | |||
10 | CONFIG_H=${1:-Config.h} | 13 | CONFIG_H=${1:-Config.h} |
11 | APPLETS_H=${2:-applets.h} | 14 | APPLETS_H=${2:-applets.h} |
12 | gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | | 15 | gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | |
diff --git a/applets/busybox.sh b/applets/busybox.sh index 338298086..2f9a905f5 100755 --- a/applets/busybox.sh +++ b/applets/busybox.sh | |||
@@ -1,5 +1,8 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | export LC_ALL=POSIX | ||
4 | export LC_CTYPE=POSIX | ||
5 | |||
3 | RAW=` \ | 6 | RAW=` \ |
4 | gcc -E -dM ${1:-Config.h} | \ | 7 | gcc -E -dM ${1:-Config.h} | \ |
5 | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \ | 8 | sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \ |
diff --git a/applets/install.sh b/applets/install.sh index 8cfae3740..d163a2ef8 100755 --- a/applets/install.sh +++ b/applets/install.sh | |||
@@ -1,5 +1,8 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | export LC_ALL=POSIX | ||
4 | export LC_CTYPE=POSIX | ||
5 | |||
3 | prefix=$1 | 6 | prefix=$1 |
4 | if [ "$prefix" = "" ]; then | 7 | if [ "$prefix" = "" ]; then |
5 | echo "No installation directory, aborting." | 8 | echo "No installation directory, aborting." |