2000-11-10 Ben Elliston <bje@redhat.com>

* config.guess: Set CPU architecture to "hppa" by default, in case
	tests fail to produce a result. From Kevin Ryde.
This commit is contained in:
Ben Elliston 2000-11-10 12:13:29 +00:00
parent 69999aff27
commit b233c759b2
2 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,9 @@
* config.guess: Search for a working C compiler if CC_FOR_BUILD is
not specified. From Kevin Ryde <user42@zip.com.au>.
* config.guess: Set CPU architecture to "hppa" by default, in case
tests fail to produce a result. From Kevin Ryde.
2000-11-08 Ben Elliston <bje@redhat.com>
* config.guess: Detect sparc-unknown-linux-gnu. Reported by Peter

1
config.guess vendored
View File

@ -544,6 +544,7 @@ EOF
}
EOF
(CCOPTS= $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null ) && HP_ARCH=`./$dummy`
if test -z "$HP_ARCH"; then HP_ARCH=hppa; fi
rm -f $dummy.c $dummy
esac
HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`