summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-03-23 21:02:50 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-03-23 21:02:50 (GMT)
commit5d39ab05f0c44b20566496dcb9eb4f663812cc6f (patch)
tree6a2cf87c6e83775969d2258e70b0c2bdcb947c48 /configure.in
parent28d6398b32c1495f4c3e3f32c35a1d014dc03926 (diff)
downloadcpython-5d39ab05f0c44b20566496dcb9eb4f663812cc6f.zip
cpython-5d39ab05f0c44b20566496dcb9eb4f663812cc6f.tar.gz
cpython-5d39ab05f0c44b20566496dcb9eb4f663812cc6f.tar.bz2
Merged revisions 79351 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79351 | benjamin.peterson | 2010-03-23 15:58:37 -0500 (Tue, 23 Mar 2010) | 1 line 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 6b002c4..fcea443 100644
--- a/configure.in
+++ b/configure.in
@@ -863,7 +863,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)