diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-02 20:49:42 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-02 20:49:42 (GMT) |
commit | 59dd7abc561204b94852bdaefe2491357da980e5 (patch) | |
tree | 1908eb8a3040848918db16bef03e71f81e1b6bb6 /configure.in | |
parent | f1cc81a97d7e4ce21a08506fda5b5b846e65ba54 (diff) | |
download | cpython-59dd7abc561204b94852bdaefe2491357da980e5.zip cpython-59dd7abc561204b94852bdaefe2491357da980e5.tar.gz cpython-59dd7abc561204b94852bdaefe2491357da980e5.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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index c94ea6e..e6be5ca 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' |