Commit d4b721bc authored by Benjamin Peterson's avatar Benjamin Peterson

the == test doesn't work on Solaris #8210

parent 3c919cf1
#! /bin/sh
# From configure.in Revision: 78962 .
# From configure.in Revision: 78964 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.7.
#
......@@ -4596,7 +4596,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)
......
......@@ -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)
......
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