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