From: Ben Elliston Date: Fri, 23 Oct 1998 16:28:53 +0000 (+0000) Subject: 1998-10-24 Ben Elliston X-Git-Tag: autoconf-2-13-rc1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d53aae6bb492eb5cb513aa965e93d1976dc2094;p=thirdparty%2Fautoconf.git 1998-10-24 Ben Elliston * config.guess: Hide warnings emitted by the HP linker when generating a PA 2.0 object file. Contributed by Marcus Thiessel . --- diff --git a/ChangeLog b/ChangeLog index 043c92cf..787f213c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1998-10-24 Ben Elliston + + * config.guess: Hide warnings emitted by the HP linker when + generating a PA 2.0 object file. Contributed by Marcus Thiessel + . + 1998-10-20 Ben Elliston * acgeneral.m4 (AC_LANG_RESTORE): Fix a typo spotted by Noah diff --git a/config.guess b/config.guess index 6e823367..1ec70cc1 100755 --- a/config.guess +++ b/config.guess @@ -400,7 +400,7 @@ EOF exit (0); } EOF - ${CC-cc} dummy.c -o dummy && HP_ARCH=`./dummy` + (${CC-cc} dummy.c -o dummy 2>/dev/null ) && HP_ARCH=`./dummy` rm -f dummy.c dummy esac HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`