Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-12-26 19:36:10 +0300
committerMatt Kraai <kraai@debian.org>2000-12-26 19:36:10 +0300
commite9e182e2557c984d6cb7660e07e657c095051898 (patch)
treedddb2372826b972791c58e304c81813abcb37c80 /applets
parent2d5b64273fb10938f963ea845bf558b55c3884fa (diff)
Fix lower casing for weird locales.
Diffstat (limited to 'applets')
-rwxr-xr-xapplets/busybox.sh2
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:-.}