diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-23 21:02:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-23 21:02:34 (GMT) |
commit | 65b4ec500ce12d91799640e5f1e414ad99eb45cd (patch) | |
tree | a8bcec164a1cfe1cc3fc1d970fe2f2903dc6d080 /configure | |
parent | 5b58f5e5091ad9306b459d586b699c57d512ba40 (diff) | |
download | cpython-65b4ec500ce12d91799640e5f1e414ad99eb45cd.zip cpython-65b4ec500ce12d91799640e5f1e414ad99eb45cd.tar.gz cpython-65b4ec500ce12d91799640e5f1e414ad99eb45cd.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')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 78821 . +# From configure.in Revision: 78965 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 3.2. # @@ -4521,7 +4521,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) |