diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-14 14:24:31 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-14 14:24:31 (GMT) |
commit | 11d932372bab6b409e48116ec90311f36c0a9efd (patch) | |
tree | 1f6752e749d0d201b72beee89f2922e8e610a36b /configure | |
parent | 8122bdd8bd6f0f84a7e296190a510431888aa274 (diff) | |
download | cpython-11d932372bab6b409e48116ec90311f36c0a9efd.zip cpython-11d932372bab6b409e48116ec90311f36c0a9efd.tar.gz cpython-11d932372bab6b409e48116ec90311f36c0a9efd.tar.bz2 |
fix freebsd linking #7705
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 78817 . +# From configure.in Revision: 78819 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 2.7. # @@ -14860,7 +14860,7 @@ then FreeBSD*) if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ] then - LDSHARED="$CC -shared ${LDFLAGS}" + LDSHARED="$(CC) -shared ${LDFLAGS}" else LDSHARED="ld -Bshareable ${LDFLAGS}" fi;; |