[Python-checkins] r87646 - in python/branches/py3k: configure configure.in

antoine.pitrou python-checkins at python.org
Sun Jan 2 21:45:22 CET 2011


Author: antoine.pitrou
Date: Sun Jan  2 21:45:21 2011
New Revision: 87646

Log:
Fix bad quoting in r87639. Caught by Arfrever.



Modified:
   python/branches/py3k/configure
   python/branches/py3k/configure.in

Modified: python/branches/py3k/configure
==============================================================================
--- python/branches/py3k/configure	(original)
+++ python/branches/py3k/configure	Sun Jan  2 21:45:21 2011
@@ -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 @@
 				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'

Modified: python/branches/py3k/configure.in
==============================================================================
--- python/branches/py3k/configure.in	(original)
+++ python/branches/py3k/configure.in	Sun Jan  2 21:45:21 2011
@@ -1750,8 +1750,8 @@
 				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'


More information about the Python-checkins mailing list