diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-23 21:05:56 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-23 21:05:56 (GMT) |
commit | e7e59c270d6a7935a2c396303b49b4038fed4abb (patch) | |
tree | eb3e90e61a5b598279e7fd6b11bd8710e305e6ba /configure.in | |
parent | 6de9bec3928f786488e4206785ce9db227d9871b (diff) | |
download | cpython-e7e59c270d6a7935a2c396303b49b4038fed4abb.zip cpython-e7e59c270d6a7935a2c396303b49b4038fed4abb.tar.gz cpython-e7e59c270d6a7935a2c396303b49b4038fed4abb.tar.bz2 |
Merged revisions 79352 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r79352 | benjamin.peterson | 2010-03-23 16:02:34 -0500 (Tue, 23 Mar 2010) | 9 lines
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.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 17bc82b..4008d2c 100644 --- a/configure.in +++ b/configure.in @@ -832,7 +832,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) |