Fix SF # 614587, configure.in patch from Tim Rice
Need to quote $GCC in case it isn't set.
This commit is contained in:
parent
d8a9d2a0e9
commit
dcfaaf2b28
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.in Revision: 1.344 .
|
# From configure.in Revision: 1.345 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.53.
|
# Generated by GNU Autoconf 2.53.
|
||||||
#
|
#
|
||||||
|
@ -3445,7 +3445,7 @@ fi;
|
||||||
|
|
||||||
if test -z "$OPT"
|
if test -z "$OPT"
|
||||||
then
|
then
|
||||||
case $GCC in
|
case "$GCC" in
|
||||||
yes)
|
yes)
|
||||||
case $ac_cv_prog_cc_g in
|
case $ac_cv_prog_cc_g in
|
||||||
yes)
|
yes)
|
||||||
|
|
|
@ -459,7 +459,7 @@ fi],
|
||||||
AC_SUBST(OPT)
|
AC_SUBST(OPT)
|
||||||
if test -z "$OPT"
|
if test -z "$OPT"
|
||||||
then
|
then
|
||||||
case $GCC in
|
case "$GCC" in
|
||||||
yes)
|
yes)
|
||||||
case $ac_cv_prog_cc_g in
|
case $ac_cv_prog_cc_g in
|
||||||
yes)
|
yes)
|
||||||
|
|
Loading…
Reference in New Issue