From e9e182e2557c984d6cb7660e07e657c095051898 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Tue, 26 Dec 2000 16:36:10 +0000 Subject: Fix lower casing for weird locales. --- applets/busybox.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'applets') 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.*\/\1.c/gp;' \ - | tr '[:upper:]' '[:lower:]' | sort + | tr A-Z a-z | sort ` test "${RAW}" != "" || exit cd ${2:-.} -- cgit v1.2.3