# HG changeset patch # User Michael Meissner # Date 799007738 0 # Node ID c23dd70bf6a30883bb48b2b8c378056aeb93366a # Parent e90c3c69416abf1c2fcd436155871c2615e3db19 Support for pre-BFD versions of Linux ld. diff -r e90c3c69416a -r c23dd70bf6a3 config.guess --- a/config.guess Thu Apr 27 13:22:29 1995 +0000 +++ b/config.guess Thu Apr 27 18:35:38 1995 +0000 @@ -300,7 +300,14 @@ echo `echo ${UNAME_MACHINE}|sed -e 's,/.*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit 0 ;; *:Linux:*:*) - # Determine whether the default compiler is a.out or elf + # Systems without a BFD linker + if test -d /usr/lib/ldscripts/. ; then + : + else + echo "${UNAME_MACHINE}-unknown-linuxoldld" + exit 0 + fi + # Determine whether the default compiler is a.out or elf cat >dummy.c <