summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-03-23 20:58:37 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-03-23 20:58:37 (GMT)
commitd4b721bc005085ed6d7072a896acce008c67a2fc (patch)
tree2df57ee64c495914b9671d44356318e4c70a996a /configure.in
parent3c919cf140170a03c20ec68a8fe63586b718d057 (diff)
downloadcpython-d4b721bc005085ed6d7072a896acce008c67a2fc.zip
cpython-d4b721bc005085ed6d7072a896acce008c67a2fc.tar.gz
cpython-d4b721bc005085ed6d7072a896acce008c67a2fc.tar.bz2
the == test doesn't work on Solaris #8210
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 31f51ef..9773e8c 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)