diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-09-25 21:26:19 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-09-25 21:26:19 (GMT) |
commit | d957f39fefc3fddb570664dd622e341e681d2968 (patch) | |
tree | 4d96d8a83915c7b58b649de20f5da9a66becb517 | |
parent | dcfaaf2b28085d918ccb9bcdc6beac62d73842be (diff) | |
download | cpython-d957f39fefc3fddb570664dd622e341e681d2968.zip cpython-d957f39fefc3fddb570664dd622e341e681d2968.tar.gz cpython-d957f39fefc3fddb570664dd622e341e681d2968.tar.bz2 |
Back out previous change.
Quotes aren't necessary in case statements. Spotted by Neil Schemenauer.
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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 fb49e1f..e97e32e 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) |