From: Neal Norwitz Date: Wed, 25 Sep 2002 20:38:34 +0000 (+0000) Subject: Fix SF # 614587, configure.in patch from Tim Rice X-Git-Tag: v2.3c1~3982 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dcfaaf2b28085d918ccb9bcdc6beac62d73842be;p=thirdparty%2FPython%2Fcpython.git Fix SF # 614587, configure.in patch from Tim Rice Need to quote $GCC in case it isn't set. --- diff --git a/configure b/configure index 8c7bf9bc7799..6f338bc45429 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.344 . +# From configure.in Revision: 1.345 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.53. # @@ -3445,7 +3445,7 @@ fi; if test -z "$OPT" then - case $GCC in + case "$GCC" in yes) case $ac_cv_prog_cc_g in yes) diff --git a/configure.in b/configure.in index e97e32e168d6..fb49e1fd9c95 100644 --- a/configure.in +++ b/configure.in @@ -459,7 +459,7 @@ fi], AC_SUBST(OPT) if test -z "$OPT" then - case $GCC in + case "$GCC" in yes) case $ac_cv_prog_cc_g in yes)