]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Back out part of previous change.
authorNeal Norwitz <nnorwitz@gmail.com>
Wed, 25 Sep 2002 21:26:01 +0000 (21:26 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Wed, 25 Sep 2002 21:26:01 +0000 (21:26 +0000)
Quotes aren't necessary in case statements.  Spotted by Neil Schemenauer.

configure
configure.in

index c8047edab322d01747535e38147ff0fc0c771167..906b16fff33e7571e11cf45a756dbe5eebe1a620 100755 (executable)
--- 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)
index 547908ef5ec682d95aae9ecbe44e7f68f74679ed..702cf8a390db197b0ff4d78937435e2b66836278 100644 (file)
@@ -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)