]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
1999-03-21 Ben Elliston <bje@cygnus.com>
authorBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Sun, 21 Mar 1999 02:42:14 +0000 (02:42 +0000)
committerBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Sun, 21 Mar 1999 02:42:14 +0000 (02:42 +0000)
* config.guess: Correct typo for detecting ELF on FreeBSD.

ChangeLog
config.guess

index 77fd0cb6a390e7329583cbd52caeeb69124c0886..f2638e89b6bd38f678004aa7d0b9ab9c9eb40f73 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
        
        * config.guess: Recognise HP 9000/8x0 machines.
index 8a1ec287d264b721a092bd054095ca10a549827d..64a402cc9ed4207a746a5b02db6f43e411b94ad3 100755 (executable)
@@ -571,7 +571,7 @@ EOF
     *:FreeBSD:*:*)
        if test -x /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
            fi
        fi