From c78f294b50064d109e88e188579f979008e7b73d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 12 Apr 1994 07:36:44 +0000 Subject: [PATCH] Conditionals testing for null $CC were backwards. --- configure1.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure1.in b/configure1.in index 2e5cf9f981f..42cfb73d882 100755 --- a/configure1.in +++ b/configure1.in @@ -1075,15 +1075,16 @@ AC_CONFIG_HEADER(src/config.h) #### Choose a compiler. if [ "x$CC" = x ] -then cc_specified=1 +then true +else cc_specified=1 fi case ${with_gcc} in "yes" ) CC="gcc" GCC=1 ;; "no" ) if [ "x$CC" = x ] - then true; - else CC=cc; + then CC=cc; + else true; fi ;; * ) -- 2.39.5