summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-02 20:49:42 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-02 20:49:42 +0000
commit59dd7abc561204b94852bdaefe2491357da980e5 (patch)
tree1908eb8a3040848918db16bef03e71f81e1b6bb6
parentf1cc81a97d7e4ce21a08506fda5b5b846e65ba54 (diff)
downloadcpython-git-59dd7abc561204b94852bdaefe2491357da980e5.tar.gz
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. ........
-rwxr-xr-xconfigure4
-rw-r--r--configure.in2
2 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index f68057f952..cf6a23b914 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Revision: 86752 .
+# From configure.in Revision: 87641 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for python 3.1.
#
@@ -7563,7 +7563,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'
diff --git a/configure.in b/configure.in
index c94ea6e801..e6be5ca66b 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'