the == test doesn't work on Solaris #8210
This commit is contained in:
parent
3c919cf140
commit
d4b721bc00
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.in Revision: 78962 .
|
# From configure.in Revision: 78964 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.61 for python 2.7.
|
# 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
|
# tweak OPT based on compiler and platform, only if the user didn't set
|
||||||
# it on the command line
|
# it on the command line
|
||||||
|
|
||||||
if test "${OPT-unset}" == "unset"
|
if test "${OPT-unset}" = "unset"
|
||||||
then
|
then
|
||||||
case $GCC in
|
case $GCC in
|
||||||
yes)
|
yes)
|
||||||
|
|
|
@ -881,7 +881,7 @@ fi],
|
||||||
# tweak OPT based on compiler and platform, only if the user didn't set
|
# tweak OPT based on compiler and platform, only if the user didn't set
|
||||||
# it on the command line
|
# it on the command line
|
||||||
AC_SUBST(OPT)
|
AC_SUBST(OPT)
|
||||||
if test "${OPT-unset}" == "unset"
|
if test "${OPT-unset}" = "unset"
|
||||||
then
|
then
|
||||||
case $GCC in
|
case $GCC in
|
||||||
yes)
|
yes)
|
||||||
|
|
Loading…
Reference in New Issue