* config.guess: Fix "tr" code. From Weiwen Liu.
From-SVN: r22321
This commit is contained in:
parent
75a398647e
commit
4b877abdec
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* config.guess: Fix "tr" code. From Weiwen Liu.
|
||||
|
||||
Sat Sep 5 13:56:52 1998 John Hughes <john@Calva.COM>
|
||||
|
||||
* configure.in: Do not assume x86-svr4 or x86-unixware can handle
|
||||
|
|
4
config.guess
vendored
4
config.guess
vendored
|
@ -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 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
|
||||
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 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' | 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 ;;
|
||||
|
|
Loading…
Add table
Reference in a new issue