mirror of https://github.com/python/cpython
Merged revisions 78817 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78817 | benjamin.peterson | 2010-03-09 15:43:36 -0600 (Tue, 09 Mar 2010) | 1 line handle an empty OPT variable correctly #8100 ........
This commit is contained in:
parent
8a6e491488
commit
2a5b622510
|
@ -4578,7 +4578,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 -z "$OPT"
|
if test "${OPT-unset}" == "unset"
|
||||||
then
|
then
|
||||||
case $GCC in
|
case $GCC in
|
||||||
yes)
|
yes)
|
||||||
|
|
|
@ -863,7 +863,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 -z "$OPT"
|
if test "${OPT-unset}" == "unset"
|
||||||
then
|
then
|
||||||
case $GCC in
|
case $GCC in
|
||||||
yes)
|
yes)
|
||||||
|
|
Loading…
Reference in New Issue