From 1718bd13908cb6153a6ce47b6192062ee31bdcc0 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 9 Mar 2010 21:46:49 +0000 Subject: 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 ........ --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index bcb8205..7481efe 100755 --- a/configure +++ b/configure @@ -4521,7 +4521,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) diff --git a/configure.in b/configure.in index d1f3a5e..7c76479 100644 --- a/configure.in +++ b/configure.in @@ -819,7 +819,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) -- cgit v0.12