From: Neal Norwitz Date: Wed, 25 Sep 2002 21:26:01 +0000 (+0000) Subject: Back out part of previous change. X-Git-Tag: v2.2.2b1~107 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b332cd8f757924543674b215e69a204e4d75e5b0;p=thirdparty%2FPython%2Fcpython.git Back out part of previous change. Quotes aren't necessary in case statements. Spotted by Neil Schemenauer. --- diff --git a/configure b/configure index c8047edab322..906b16fff33e 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.288.6.8 +# From configure.in Revision: 1.288.6.9 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -1664,7 +1664,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 547908ef5ec6..702cf8a390db 100644 --- a/configure.in +++ b/configure.in @@ -373,7 +373,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)