From: Richard Kenner Date: Wed, 28 Jun 1995 21:57:23 +0000 (+0000) Subject: (AIX4): More robust release numbering discovery. X-Git-Tag: emacs-19.34~3442 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=141155b89ce4da59f107d9f8c1fa70f9c1a0372b;p=emacs.git (AIX4): More robust release numbering discovery. --- diff --git a/config.guess b/config.guess index 6b815db7d1d..51d040c2855 100755 --- a/config.guess +++ b/config.guess @@ -187,10 +187,8 @@ EOF else IBM_ARCH=powerpc fi - if grep bos410 /usr/include/stdio.h >/dev/null 2>&1; then - IBM_REV=4.1 - elif grep bos411 /usr/include/stdio.h >/dev/null 2>&1; then - IBM_REV=4.1.1 + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` else IBM_REV=4.${UNAME_RELEASE} fi