force C locale when using [a-z] in sed expressions

PR: 1283
Submitted by: Mike Frysinger
This commit is contained in:
Nils Larsch 2006-03-01 19:52:39 +00:00
parent 5dc96f40ce
commit 8299069b8e

2
config
View File

@ -427,7 +427,7 @@ if [ "$GCCVER" != "" ]; then
CC=gcc
# then strip off whatever prefix egcs prepends the number with...
# Hopefully, this will work for any future prefixes as well.
GCCVER=`echo $GCCVER | sed 's/^[a-zA-Z]*\-//'`
GCCVER=`echo $GCCVER | LC_ALL=C sed 's/^[a-zA-Z]*\-//'`
# Since gcc 3.1 gcc --version behaviour has changed. gcc -dumpversion
# does give us what we want though, so we use that. We just just the
# major and minor version numbers.