Per Vladimir's suggestion, force the locale to POSIX for all
authorEric Andersen <andersen@codepoet.org>
Thu, 8 Mar 2001 21:42:11 +0000 (21:42 -0000)
committerEric Andersen <andersen@codepoet.org>
Thu, 8 Mar 2001 21:42:11 +0000 (21:42 -0000)
the scripts so busybox will install properly.

applets/busybox.mkll
applets/busybox.sh
applets/install.sh
busybox.mkll
busybox.sh
install.sh
pristine_setup.sh

index 81b329ad89f34be15a59059aeee59d9575a06e9b..4e15e1611a5aa6889047f74c8e18f2ced81320ef 100755 (executable)
@@ -7,6 +7,9 @@
 
 # Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov>
 
+export LC_ALL=POSIX
+export LC_CTYPE=POSIX
+
 CONFIG_H=${1:-Config.h}
 APPLETS_H=${2:-applets.h}
 gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
index 33829808625de7912a6f1c95318e3865b32d49cf..2f9a905f53997f04fa3bedbf3500a727ad4028ec 100755 (executable)
@@ -1,5 +1,8 @@
 #!/bin/sh
 
+export LC_ALL=POSIX
+export LC_CTYPE=POSIX
+
 RAW=` \
     gcc -E -dM ${1:-Config.h} | \
     sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \
index 8cfae3740cd9afc2dafc8517fe4e753d5f3824c7..d163a2ef84303034728339ebffa4e19cb68ab32e 100755 (executable)
@@ -1,5 +1,8 @@
 #!/bin/sh
 
+export LC_ALL=POSIX
+export LC_CTYPE=POSIX
+
 prefix=$1
 if [ "$prefix" = "" ]; then
     echo "No installation directory, aborting."
index 81b329ad89f34be15a59059aeee59d9575a06e9b..4e15e1611a5aa6889047f74c8e18f2ced81320ef 100755 (executable)
@@ -7,6 +7,9 @@
 
 # Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov>
 
+export LC_ALL=POSIX
+export LC_CTYPE=POSIX
+
 CONFIG_H=${1:-Config.h}
 APPLETS_H=${2:-applets.h}
 gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
index 33829808625de7912a6f1c95318e3865b32d49cf..2f9a905f53997f04fa3bedbf3500a727ad4028ec 100755 (executable)
@@ -1,5 +1,8 @@
 #!/bin/sh
 
+export LC_ALL=POSIX
+export LC_CTYPE=POSIX
+
 RAW=` \
     gcc -E -dM ${1:-Config.h} | \
     sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \
index 8cfae3740cd9afc2dafc8517fe4e753d5f3824c7..d163a2ef84303034728339ebffa4e19cb68ab32e 100755 (executable)
@@ -1,5 +1,8 @@
 #!/bin/sh
 
+export LC_ALL=POSIX
+export LC_CTYPE=POSIX
+
 prefix=$1
 if [ "$prefix" = "" ]; then
     echo "No installation directory, aborting."
index e1598fd303a36e0e373ab5574ca0066e54b9694d..62f3f3075c0238cbdd85e1268c374aa1a52df989 100755 (executable)
@@ -10,6 +10,9 @@
 #
 # If you use a ? in your path name, you lose, see sed command below.
 
+export LC_ALL=POSIX
+export LC_CTYPE=POSIX
+
 DIR=${0%%/pristine_setup.sh}
 if [ ! -d $DIR ]; then
   echo "unexpected problem: $DIR is not a directory.  Aborting pristine setup"