diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-09-25 20:38:34 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-09-25 20:38:34 (GMT) |
commit | dcfaaf2b28085d918ccb9bcdc6beac62d73842be (patch) | |
tree | c97f7563444338e0dd86984993e36bb951f5e07e /configure | |
parent | d8a9d2a0e964d1018f1ba4fa3857a3f061a24137 (diff) | |
download | cpython-dcfaaf2b28085d918ccb9bcdc6beac62d73842be.zip cpython-dcfaaf2b28085d918ccb9bcdc6beac62d73842be.tar.gz cpython-dcfaaf2b28085d918ccb9bcdc6beac62d73842be.tar.bz2 |
Fix SF # 614587, configure.in patch from Tim Rice
Need to quote $GCC in case it isn't set.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |