2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

Undo version 1.8, which hardwired *all* systems to be OpenUNIX.

This commit is contained in:
Bob Halley
2001-10-04 06:37:04 +00:00
parent 840c7a02b3
commit 1e219db778

8
config.guess vendored
View File

@@ -118,10 +118,10 @@ if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
PATH=$PATH:/.attbin ; export PATH
fi
UNAME_MACHINE=i386
UNAME_RELEASE=5
UNAME_SYSTEM=OpenUNIX
UNAME_VERSION=8.0.0
UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
# Note: order is significant - the case branches are not exclusive.