From: Richard M. Stallman Date: Tue, 12 Apr 1994 07:36:44 +0000 (+0000) Subject: Conditionals testing for null $CC were backwards. X-Git-Tag: emacs-19.34~9026 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c78f294b50064d109e88e188579f979008e7b73d;p=emacs.git Conditionals testing for null $CC were backwards. --- 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 ;; * )