Skip to content

Commit

Permalink
patch python#101733: fix glitch in FreeBSD conf
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyhylton committed Aug 31, 2000
1 parent aef0e89 commit 4bcc7c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4bcc7c5

Please sign in to comment.