# HG changeset patch # User Richard M. Stallman # Date 766136204 0 # Node ID 2fade2496b79a6992dcc130350f20f2907721689 # Parent 903d03ddf99cc9c5c40ab2f89e153797f89b429d Conditionals testing for null $CC were backwards. diff -r 903d03ddf99c -r 2fade2496b79 configure1.in --- a/configure1.in Tue Apr 12 06:26:29 1994 +0000 +++ b/configure1.in Tue Apr 12 07:36:44 1994 +0000 @@ -1075,15 +1075,16 @@ #### 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 ;; * )