From c6e0cb8fa6ff4645ad0704af2ce385cf9cb5b6af Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Wed, 3 Oct 2001 22:34:54 +0000 Subject: [PATCH] 1026. [port] Recognize OpenUNIX 8 in config.guess. [RT #1830] (9.2 branch only, fixed by upgrading config.guess on mainline) --- config.guess | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.guess b/config.guess index 979b635010..cdb44114a0 100644 --- a/config.guess +++ b/config.guess @@ -118,10 +118,10 @@ if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi -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 +UNAME_MACHINE=i386 +UNAME_RELEASE=5 +UNAME_SYSTEM=OpenUNIX +UNAME_VERSION=8.0.0 # Note: order is significant - the case branches are not exclusive.