diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-02 20:51:34 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-02 20:51:34 (GMT) |
commit | cb40277ea4be700f3a8e2bc163dc263815a28810 (patch) | |
tree | 77959d43cf9ad75b4e0680e1fd51c6532fb406a4 /configure | |
parent | da4a5f0b3770bed0f463e325326d9689710596d9 (diff) | |
download | cpython-cb40277ea4be700f3a8e2bc163dc263815a28810.zip cpython-cb40277ea4be700f3a8e2bc163dc263815a28810.tar.gz cpython-cb40277ea4be700f3a8e2bc163dc263815a28810.tar.bz2 |
Merged revisions 87646 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r87646 | antoine.pitrou | 2011-01-02 21:45:21 +0100 (dim., 02 janv. 2011) | 3 lines
Fix bad quoting in r87639. Caught by Arfrever.
........
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 86848 . +# From configure.in Revision: 87640 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.65 for python 2.7. # @@ -7649,8 +7649,8 @@ then esac fi;; NetBSD*|DragonFly*) - LDSHARED="$(CC) -shared" - LDCXXSHARED="$(CXX) -shared";; + LDSHARED='$(CC) -shared' + LDCXXSHARED='$(CXX) -shared';; OpenUNIX*|UnixWare*) if test "$GCC" = "yes" ; then LDSHARED='$(CC) -shared' |