Kaydet (Commit) 65b4ec50 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

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
........
üst 5b58f5e5
#! /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)
......
......@@ -819,7 +819,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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment