Mercurial > emacs
changeset 6827:2fade2496b79
Conditionals testing for null $CC were backwards.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 12 Apr 1994 07:36:44 +0000 |
parents | 903d03ddf99c |
children | cccf812ed4f2 |
files | configure1.in |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 ;; * )