2001-06-29 John Wolfe <jlw@sco.com>

* config.guess: Correct UnixWare 7 and Open UNIX 8.0 change;
	test for i586 must be a string that ends with "Pentium".
This commit is contained in:
Ben Elliston 2001-06-29 02:33:45 +00:00
parent c98696fb70
commit 21c209a8a5
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-06-29 John Wolfe <jlw@sco.com>
* config.guess: Correct UnixWare 7 and Open UNIX 8.0 change;
test for i586 must be a string that ends with "Pentium".
2001-06-28 Ben Elliston <bje@redhat.com>
* config.guess: On Alpha Linux, use /proc/cpuinfo to determine

4
config.guess vendored
View File

@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
# Free Software Foundation, Inc.
timestamp='2001-06-28'
timestamp='2001-06-29'
# 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
@ -922,7 +922,7 @@ EOF
i*86:*:5:[78]*)
case `/bin/uname -X | grep "^Machine"` in
*486*) UNAME_MACHINE=i486 ;;
*Pentium*) UNAME_MACHINE=i586 ;;
*Pentium) UNAME_MACHINE=i586 ;;
*Pent*|*Celeron) UNAME_MACHINE=i686 ;;
esac
echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}