1999-03-21 Ben Elliston <bje@cygnus.com>

* config.guess: Correct typo for detecting ELF on FreeBSD.
This commit is contained in:
Ben Elliston 1999-03-21 02:42:14 +00:00
parent c860f86596
commit 79dd74326f
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1999-03-21 Ben Elliston <bje@cygnus.com>
* config.guess: Correct typo for detecting ELF on FreeBSD.
1998-03-14 Alexandre Oliva <oliva@dcc.unicamp.br> 1998-03-14 Alexandre Oliva <oliva@dcc.unicamp.br>
* config.guess: Recognise HP 9000/8x0 machines. * config.guess: Recognise HP 9000/8x0 machines.

2
config.guess vendored
View File

@ -571,7 +571,7 @@ EOF
*:FreeBSD:*:*) *:FreeBSD:*:*)
if test -x /usr/bin/objformat; then if test -x /usr/bin/objformat; then
if test "elf" = "`/usr/bin/objformat`"; then if test "elf" = "`/usr/bin/objformat`"; then
echo ${UNAME_MACHINE}-unknown-freebsdelf`echo${UNAME_RELEASE}|sed -e 's/[-_].*//'` echo ${UNAME_MACHINE}-unknown-freebsdelf`echo ${UNAME_RELEASE}|sed -e 's/[-_].*//'`
exit 0 exit 0
fi fi
fi fi