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.in | |
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.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index d0d0280..144d0bd 100644 --- a/configure.in +++ b/configure.in @@ -1875,8 +1875,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' |