2000-04-26 Ben Elliston <bje@redhat.com>

* config.guess: Handle an ld emulation of elf_i?86. From Bruce
	Korb <bkorb@sco.com>.
This commit is contained in:
Ben Elliston 2000-04-25 20:58:07 +00:00
parent 9dc12e0d24
commit 9f9248fc5a
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2000-04-26 Ben Elliston <bje@redhat.com>
* config.guess: Handle an ld emulation of elf_i?86. From Bruce
Korb <bkorb@sco.com>.
2000-04-22 Ben Elliston <bje@redhat.com> 2000-04-22 Ben Elliston <bje@redhat.com>
* config.guess: Do not differentiate FreeBSD systems that use the * config.guess: Do not differentiate FreeBSD systems that use the

4
config.guess vendored
View File

@ -666,6 +666,10 @@ EOF
echo "${UNAME_MACHINE}-pc-linux-gnuaout" echo "${UNAME_MACHINE}-pc-linux-gnuaout"
exit 0 exit 0
;; ;;
elf_i?86)
echo "${UNAME_MACHINE}-pc-linux"
exit 0
;;
i?86coff) i?86coff)
echo "${UNAME_MACHINE}-pc-linux-gnucoff" echo "${UNAME_MACHINE}-pc-linux-gnucoff"
exit 0 exit 0