diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | config.guess | 5 |
2 files changed, 6 insertions, 3 deletions
@@ -1,3 +1,7 @@ +Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com> + + * config.guess: Match "Pent II" or "PentII" for OpenServer. + Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com) * config.guess: Correctly identify Pentium II sco boxes. diff --git a/config.guess b/config.guess index da051c6..63f1afb 100755 --- a/config.guess +++ b/config.guess @@ -687,9 +687,8 @@ EOF (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 - (/bin/uname -X|egrep '^Machine.*PentII' >/dev/null) \ - && UNAME_MACHINE=i686 - (/bin/uname -X|egrep '^Machine.*Pent II' >/dev/null) \ +# 5.0.4c returns "Pent II". 5.0.5 returns PentII + (/bin/uname -X|egrep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 |