diff options
author | Eric Andersen | 2001-03-08 21:42:11 +0000 |
---|---|---|
committer | Eric Andersen | 2001-03-08 21:42:11 +0000 |
commit | 39eea898c4ffcbbaa13b542a12692ff52f2dd7d6 (patch) | |
tree | e0264ff6e461a171d25d2b66ac1867b5823ce1e0 /pristine_setup.sh | |
parent | 7e5291f111733edce3f9cb475af7938c8657f30d (diff) | |
download | busybox-39eea898c4ffcbbaa13b542a12692ff52f2dd7d6.zip busybox-39eea898c4ffcbbaa13b542a12692ff52f2dd7d6.tar.gz |
Per Vladimir's suggestion, force the locale to POSIX for all
the scripts so busybox will install properly.
Diffstat (limited to 'pristine_setup.sh')
-rwxr-xr-x | pristine_setup.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pristine_setup.sh b/pristine_setup.sh index e1598fd..62f3f30 100755 --- a/pristine_setup.sh +++ b/pristine_setup.sh @@ -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" |