summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2000-08-31 17:45:35 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2000-08-31 17:45:35 (GMT)
commit4bcc7c51196cedcfcd3e6929551d9647f786df3d (patch)
treece803695befcc55ebe3b60753ed32224421b616e /configure
parentaef0e890b52d1ee7c9b2ee3cd4c13611039665eb (diff)
downloadcpython-4bcc7c51196cedcfcd3e6929551d9647f786df3d.zip
cpython-4bcc7c51196cedcfcd3e6929551d9647f786df3d.tar.gz
cpython-4bcc7c51196cedcfcd3e6929551d9647f786df3d.tar.bz2
patch #101733: fix glitch in FreeBSD conf
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index eee0c1d..0329456 100755
--- 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