]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* config.guess: Synch with GNU common.
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Wed, 26 May 1999 00:06:10 +0000 (00:06 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 26 May 1999 00:06:10 +0000 (00:06 +0000)
ChangeLog
config.guess

index edbd6fac3289dd8862456bfba89a5179813cf680..26b8b2889953d105bae4b28a35581403914d7872 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 1999-05-25  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * 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
index b6c264af12e1fea6fa882713b3c79ad25c859fa7..6cb567b8ae6c0afe306ac67603e16d01e7309157 100755 (executable)
@@ -643,7 +643,7 @@ EOF
          m68klinux)  echo "${UNAME_MACHINE}-unknown-linux-gnuaout" ; exit 0 ;;
          elf32ppc)
                # Determine Lib Version
-               cat >dummy.c <<EOF
+               cat >$dummy.c <<EOF
 #include <features.h>
 #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