config.guess: Avoid assumptions about "tr" behaves when LANG is set to something other than...

* config.guess: Avoid assumptions about "tr" behaves when
        LANG is set to something other than English.

From-SVN: r22118
This commit is contained in:
Lutz Wohlrab 1998-08-30 21:29:31 +00:00 committed by Jeff Law
parent 0e7e6e25ca
commit bf48dd7382
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Sun Aug 30 22:27:02 1998 Lutz Wohlrab <lutz.wohlrab@informatik.tu-chemnitz.de>
* config.guess: Avoid assumptions about "tr" behaves when
LANG is set to something other than English.
Sun Aug 30 22:14:44 1998 H.J. Lu (hjl@gnu.org)
* configure (gxx_include_dir): Changed to

4
config.guess vendored
View file

@ -98,7 +98,7 @@ EOF
esac
fi
rm -f dummy.s dummy
echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr [[A-Z]] [[a-z]]`
echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
exit 0 ;;
21064:Windows_NT:50:3)
echo alpha-dec-winnt3.5
@ -460,7 +460,7 @@ EOF
echo cray2-cray-unicos
exit 0 ;;
F300:UNIX_System_V:*:*)
FUJITSU_SYS=`uname -p | tr [A-Z] [a-z] | sed -e 's/\///'`
FUJITSU_SYS=`uname -p | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' | sed -e 's/\///'`
FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
echo "f300-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
exit 0 ;;