diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-02 20:45:21 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-02 20:45:21 (GMT) |
commit | ece919eb0fd24bcb6fa095049a163ceb96316043 (patch) | |
tree | a8197913f91ed952c808ff2f899b687e9d54d114 /configure | |
parent | b6f424043d267eac9c870d9991a6453a821ff81d (diff) | |
download | cpython-ece919eb0fd24bcb6fa095049a163ceb96316043.zip cpython-ece919eb0fd24bcb6fa095049a163ceb96316043.tar.gz cpython-ece919eb0fd24bcb6fa095049a163ceb96316043.tar.bz2 |
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: 87577 . +# From configure.in Revision: 87639 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.65 for python 3.2. # @@ -7535,8 +7535,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' |