]> granicus.if.org Git - python/commitdiff
patch #101733: fix glitch in FreeBSD conf
authorJeremy Hylton <jeremy@alum.mit.edu>
Thu, 31 Aug 2000 17:45:35 +0000 (17:45 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Thu, 31 Aug 2000 17:45:35 +0000 (17:45 +0000)
configure
configure.in

index eee0c1d5b0d9e6186cb08df730e63963a330dcf7..0329456972cfc866dab94280998a5a9d0901b85b 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 
-# From configure.in Revision: 1.152 
+# From configure.in Revision: 1.153 
 
 # Guess values for system-dependent variables and create Makefiles.
 # Generated automatically using autoconf version 2.13 
@@ -2666,7 +2666,7 @@ then
                        LDSHARED="ld -Bshareable"
                fi;;
        FreeBSD*)
-               if  "`$CC -dM -E - </dev/null | grep __ELF__`" != "" 
+               if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]
                then
                        LDSHARED="cc -shared ${LDFLAGS}"
                else
index 31d27332537cbe359b7983fe3b7cec46176949d2..f9597a97e9361e6a49019557ff01b6f569fc90b3 100644 (file)
@@ -584,7 +584,7 @@ then
                        LDSHARED="ld -Bshareable"
                fi;;
        FreeBSD*)
-               if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]
+               if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
                then
                        LDSHARED="cc -shared ${LDFLAGS}"
                else