mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Merged revisions 78818 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r78818 | benjamin.peterson | 2010-03-09 15:46:49 -0600 (Tue, 09 Mar 2010) | 9 lines
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
d4be7a24d4
commit
2417634087
2 changed files with 2 additions and 2 deletions
|
|
@ -828,7 +828,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 -z "$OPT"
|
||||
if test "${OPT-unset}" == "unset"
|
||||
then
|
||||
case $GCC in
|
||||
yes)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue