[Python-checkins] r78964 - in python/trunk: configure configure.in

benjamin.peterson python-checkins at python.org
Sun Mar 14 16:06:14 CET 2010


Author: benjamin.peterson
Date: Sun Mar 14 16:06:14 2010
New Revision: 78964

Log:
fix quotes

Modified:
   python/trunk/configure
   python/trunk/configure.in

Modified: python/trunk/configure
==============================================================================
--- python/trunk/configure	(original)
+++ python/trunk/configure	Sun Mar 14 16:06:14 2010
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 78819 .
+# From configure.in Revision: 78962 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for python 2.7.
 #
@@ -14860,7 +14860,7 @@
 	FreeBSD*)
 		if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]
 		then
-			LDSHARED="$(CC) -shared ${LDFLAGS}"
+			LDSHARED='$(CC) -shared ${LDFLAGS}'
 		else
 			LDSHARED="ld -Bshareable ${LDFLAGS}"
 		fi;;

Modified: python/trunk/configure.in
==============================================================================
--- python/trunk/configure.in	(original)
+++ python/trunk/configure.in	Sun Mar 14 16:06:14 2010
@@ -1829,7 +1829,7 @@
 	FreeBSD*)
 		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
 		then
-			LDSHARED="$(CC) -shared ${LDFLAGS}"
+			LDSHARED='$(CC) -shared ${LDFLAGS}'
 		else
 			LDSHARED="ld -Bshareable ${LDFLAGS}"
 		fi;;


More information about the Python-checkins mailing list