Fix lower casing for weird locales.

This commit is contained in:
Matt Kraai 2000-12-26 16:36:10 +00:00
parent 2d5b64273f
commit e9e182e255
2 changed files with 2 additions and 2 deletions

View File

@ -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:-.}

View File

@ -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:-.}