diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-02 19:38:30 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-02 19:38:30 (GMT) |
commit | f1cc81a97d7e4ce21a08506fda5b5b846e65ba54 (patch) | |
tree | 2115941d774fc9c3f4a1e99df7908f7aebb704d3 /configure.in | |
parent | beef5dcf77a32df66ddfc65cc750d550ba6728db (diff) | |
download | cpython-f1cc81a97d7e4ce21a08506fda5b5b846e65ba54.zip cpython-f1cc81a97d7e4ce21a08506fda5b5b846e65ba54.tar.gz cpython-f1cc81a97d7e4ce21a08506fda5b5b846e65ba54.tar.bz2 |
Merged revisions 87639 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r87639 | antoine.pitrou | 2011-01-02 20:34:03 +0100 (dim., 02 janv. 2011) | 4 lines
Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSD
and DragonFly BSD. Patch by Nicolas Joly.
........
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 0ec5e11..c94ea6e 100644 --- a/configure.in +++ b/configure.in @@ -1814,7 +1814,7 @@ then ;; esac fi;; - NetBSD*|DragonFly*) LDSHARED="cc -shared ${LDFLAGS}";; + NetBSD*|DragonFly*) LDSHARED="$(CC) -shared ${LDFLAGS}";; OpenUNIX*|UnixWare*) if test "$GCC" = "yes" then LDSHARED='$(CC) -shared' |