diff options
author | Matt Kraai <kraai@debian.org> | 2000-12-26 16:36:10 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-12-26 16:36:10 +0000 |
commit | e9e182e2557c984d6cb7660e07e657c095051898 (patch) | |
tree | dddb2372826b972791c58e304c81813abcb37c80 /applets | |
parent | 2d5b64273fb10938f963ea845bf558b55c3884fa (diff) | |
download | busybox-e9e182e2557c984d6cb7660e07e657c095051898.tar.gz |
Fix lower casing for weird locales.
Diffstat (limited to 'applets')
-rwxr-xr-x | applets/busybox.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/busybox.sh b/applets/busybox.sh index 6c91e539b..547aca477 100755 --- a/applets/busybox.sh +++ b/applets/busybox.sh @@ -3,7 +3,7 @@ RAW=` \ gcc -E -dM ${1:-Config.h} | \ sed -n -e '/^.*BB_FEATURE.*$/d;s/^#define.*\<BB_\(.*\)\>/\1.c/gp;' \ - | tr '[:upper:]' '[:lower:]' | sort + | tr A-Z a-z | sort ` test "${RAW}" != "" || exit cd ${2:-.} |