summaryrefslogtreecommitdiff
path: root/tools/config.guess
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-04-10 14:55:15 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-04-10 14:55:15 (GMT)
commit0e479dbc9352e5989d96a6ef75679e0371c58c73 (patch)
treeb52660c93233e9690a08919966a3650b49759650 /tools/config.guess
parenta57d85814987b1a38aebffd175af9054ea1659ac (diff)
Update config.guess.
Minor comment fix.
Diffstat (limited to 'tools/config.guess')
-rwxr-xr-xtools/config.guess17
1 files changed, 10 insertions, 7 deletions
diff --git a/tools/config.guess b/tools/config.guess
index 6cc26cd..0f0fe71 100755
--- a/tools/config.guess
+++ b/tools/config.guess
@@ -4,7 +4,7 @@
# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
# Inc.
-timestamp='2007-01-15'
+timestamp='2007-03-06'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -791,12 +791,15 @@ EOF
i*:PW*:*)
echo ${UNAME_MACHINE}-pc-pw32
exit ;;
- x86:Interix*:[3456]*)
- echo i586-pc-interix${UNAME_RELEASE}
- exit ;;
- EM64T:Interix*:[3456]* | authenticamd:Interix*:[3456]*)
- echo x86_64-unknown-interix${UNAME_RELEASE}
- exit ;;
+ *:Interix*:[3456]*)
+ case ${UNAME_MACHINE} in
+ x86)
+ echo i586-pc-interix${UNAME_RELEASE}
+ exit ;;
+ EM64T | authenticamd)
+ echo x86_64-unknown-interix${UNAME_RELEASE}
+ exit ;;
+ esac ;;
[345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
echo i${UNAME_MACHINE}-pc-mks
exit ;;