From: Ben Elliston Date: Sat, 4 Sep 1999 07:11:29 +0000 (+0000) Subject: 1999-08-18 Ben Elliston X-Git-Tag: trunk-pre-merge-trunk-into-experimental-1999-10-01~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c8b637ce824c47e8614448002de02ac653ae472;p=thirdparty%2Fautoconf.git 1999-08-18 Ben Elliston * config.guess: Remove "/MP" from the release string on multiprocessor x86 machines running SVR4.0. Suggested by Tom Purcell . --- diff --git a/config.guess b/config.guess index 322642eb..499f28d5 100755 --- a/config.guess +++ b/config.guess @@ -798,10 +798,11 @@ EOF echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit 0 ;; i?86:*:4.*:* | i?86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo ${UNAME_MACHINE}-univel-sysv${UNAME_RELEASE} + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else - echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE} + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit 0 ;; i?86:*:5:7*)