From: Benjamin Peterson Date: Tue, 23 Mar 2010 20:58:37 +0000 (+0000) Subject: the == test doesn't work on Solaris #8210 X-Git-Tag: v2.7b1~233 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d4b721bc005085ed6d7072a896acce008c67a2fc;p=python the == test doesn't work on Solaris #8210 --- diff --git a/configure b/configure index 8ca3fe0b1a..e6fc4d684a 100755 --- a/configure +++ b/configure @@ -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 @@ fi # 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) diff --git a/configure.in b/configure.in index 31f51ef319..9773e8c06f 100644 --- a/configure.in +++ b/configure.in @@ -881,7 +881,7 @@ fi], # 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)