From: Neal Norwitz <nnorwitz@gmail.com>
Date: Wed, 25 Sep 2002 21:26:19 +0000 (+0000)
Subject: Back out previous change.
X-Git-Tag: v2.3c1~3981
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d957f39fefc3fddb570664dd622e341e681d2968;p=python

Back out previous change.
Quotes aren't necessary in case statements.  Spotted by Neil Schemenauer.
---

diff --git a/configure b/configure
index 6f338bc454..73d08c6239 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 1.345 .
+# From configure.in Revision: 1.346 .
 # 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 fb49e1fd9c..e97e32e168 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)