commit | 39eea898c4ffcbbaa13b542a12692ff52f2dd7d6 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Thu Mar 08 21:42:11 2001 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Thu Mar 08 21:42:11 2001 +0000 |
tree | e0264ff6e461a171d25d2b66ac1867b5823ce1e0 | |
parent | 7e5291f111733edce3f9cb475af7938c8657f30d [diff] [blame] |
Per Vladimir's suggestion, force the locale to POSIX for all the scripts so busybox will install properly.
diff --git a/applets/install.sh b/applets/install.sh index 8cfae37..d163a2e 100755 --- a/applets/install.sh +++ b/applets/install.sh
@@ -1,5 +1,8 @@ #!/bin/sh +export LC_ALL=POSIX +export LC_CTYPE=POSIX + prefix=$1 if [ "$prefix" = "" ]; then echo "No installation directory, aborting."