diff options
author | Rob Landley <rob@landley.net> | 2016-01-15 16:58:42 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-01-15 16:58:42 -0600 |
commit | deb31c82944c1fa98ea2942691c53c9d841c1a66 (patch) | |
tree | b8b0e5034590491230ff3e6f76a2570236a83f50 /scripts | |
parent | a90fd0a191f4afbe55d9170c81e8ce2b196c26c4 (diff) | |
download | toybox-deb31c82944c1fa98ea2942691c53c9d841c1a66.tar.gz |
Locale setting is case sensitive.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test.sh b/scripts/test.sh index 352c7bc3..2276619e 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -20,7 +20,7 @@ fi cd generated/testdir PATH="$PWD:$PATH" cd testdir -export LC_COLLATE=c +export LC_COLLATE=C . "$TOPDIR"/scripts/runtest.sh [ -f "$TOPDIR/generated/config.h" ] && export OPTIONFLAGS=:$(echo $(sed -nr 's/^#define CFG_(.*) 1/\1/p' "$TOPDIR/generated/config.h") | sed 's/ /:/g') |