diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-10 22:28:52 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-10 22:28:52 (GMT) |
commit | 2417634087b6532ad555b4fa367aceb0ebab44cc (patch) | |
tree | c561dd111575711956e4fe435034276122d28717 /configure | |
parent | d4be7a24d441601679c7de0f4387e0ee4b0b9393 (diff) | |
download | cpython-2417634087b6532ad555b4fa367aceb0ebab44cc.zip cpython-2417634087b6532ad555b4fa367aceb0ebab44cc.tar.gz cpython-2417634087b6532ad555b4fa367aceb0ebab44cc.tar.bz2 |
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
........
................
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4533,7 +4533,7 @@ fi # tweak OPT based on compiler and platform, only if the user didn't set # it on the command line -if test -z "$OPT" +if test "${OPT-unset}" == "unset" then case $GCC in yes) |