Mercurial > emacs
changeset 11606:e90c3c69416a
(i[34]86:*:3.2:*) test for /usr/options/cb.name before calling uname.
author | Richard Kenner <kenner@gnu.org> |
---|---|
date | Thu, 27 Apr 1995 13:22:29 +0000 |
parents | 36b1eb58d0c9 |
children | c23dd70bf6a3 |
files | config.guess |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/config.guess Wed Apr 26 21:47:35 1995 +0000 +++ b/config.guess Thu Apr 27 13:22:29 1995 +0000 @@ -329,13 +329,13 @@ fi exit 0 ;; i[34]86:*:3.2:*) - if /bin/uname -X 2>/dev/null >/dev/null ; then + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` + echo ${UNAME_MACHINE}-unknown-isc$UNAME_REL + elif /bin/uname -X 2>/dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 echo ${UNAME_MACHINE}-unknown-sco$UNAME_REL - elif test -f /usr/options/cb.name; then - UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` - echo ${UNAME_MACHINE}-unknown-isc$UNAME_REL else echo ${UNAME_MACHINE}-unknown-sysv32 fi