]> git.eshelyaron.com Git - emacs.git/commitdiff
Conditionals testing for null $CC were backwards.
authorRichard M. Stallman <rms@gnu.org>
Tue, 12 Apr 1994 07:36:44 +0000 (07:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 12 Apr 1994 07:36:44 +0000 (07:36 +0000)
configure1.in

index 2e5cf9f981f21a01f34fa3d654a500b1ce55a2c7..42cfb73d8822ed4515089b5e0d423d6c0f569ca3 100755 (executable)
@@ -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
     ;;
   * )