From: Alexandre Oliva Date: Wed, 26 May 1999 00:06:10 +0000 (+0000) Subject: * config.guess: Synch with GNU common. X-Git-Tag: release-1-3-2~2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=f5efff2ece2a4d4bbc156473558cf12e3ded74e2;p=thirdparty%2Flibtool.git * config.guess: Synch with GNU common. --- diff --git a/ChangeLog b/ChangeLog index edbd6fac3..26b8b2889 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 1999-05-25 Alexandre Oliva + * config.guess: Synch with GNU common. + * ltmain.in: Revert to stripping .exe on all platforms. * TODO: Note about this problem. Demo is fixed on win32. -Wl and -Wc are implemented for release 1.4. Support `empty' convenience diff --git a/config.guess b/config.guess index b6c264af1..6cb567b8a 100755 --- a/config.guess +++ b/config.guess @@ -643,7 +643,7 @@ EOF m68klinux) echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;; elf32ppc) # Determine Lib Version - cat >dummy.c <$dummy.c < #if defined(__GLIBC__) extern char __libc_version[]; @@ -662,14 +662,14 @@ main(argc, argv) } EOF LIBC="" - ${CC-cc} dummy.c -o dummy 2>/dev/null + $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null if test "$?" = 0 ; then - ./dummy | grep 1\.99 > /dev/null + ./$dummy | grep 1\.99 > /dev/null if test "$?" = 0 ; then LIBC="libc1" fi fi - rm -f dummy.c dummy + rm -f $dummy.c $dummy echo powerpc-unknown-linux-gnu${LIBC} ; exit 0 ;; esac