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

benjamin.peterson python-checkins at python.org
Tue Mar 23 21:58:37 CET 2010


Author: benjamin.peterson
Date: Tue Mar 23 21:58:37 2010
New Revision: 79351

Log:
the == test doesn't work on Solaris #8210

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

Modified: python/trunk/configure
==============================================================================
--- python/trunk/configure	(original)
+++ python/trunk/configure	Tue Mar 23 21:58:37 2010
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 78962 .
+# From configure.in Revision: 78964 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for python 2.7.
 #
@@ -4596,7 +4596,7 @@
 # tweak OPT based on compiler and platform, only if the user didn't set
 # it on the command line
 
-if test "${OPT-unset}" == "unset"
+if test "${OPT-unset}" = "unset"
 then
     case $GCC in
     yes)

Modified: python/trunk/configure.in
==============================================================================
--- python/trunk/configure.in	(original)
+++ python/trunk/configure.in	Tue Mar 23 21:58:37 2010
@@ -881,7 +881,7 @@
 # tweak OPT based on compiler and platform, only if the user didn't set
 # it on the command line
 AC_SUBST(OPT)
-if test "${OPT-unset}" == "unset"
+if test "${OPT-unset}" = "unset"
 then
     case $GCC in
     yes)


More information about the Python-checkins mailing list