From b0ebb85644a55e35907958161c494e96dea1a5e1 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 12 Apr 1994 07:36:44 +0000 Subject: Conditionals testing for null $CC were backwards. --- configure1.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'configure1.in') 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 ;; * ) -- cgit v1.2.1