summaryrefslogtreecommitdiff
path: root/configure1.in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-04-12 07:36:44 +0000
committerRichard M. Stallman <rms@gnu.org>1994-04-12 07:36:44 +0000
commitb0ebb85644a55e35907958161c494e96dea1a5e1 (patch)
treee9853227b97a3fe068af8d2c92ec92343f619b65 /configure1.in
parent768fe38e579559a9f0cb37f36e45a2704496b27c (diff)
downloademacs-b0ebb85644a55e35907958161c494e96dea1a5e1.tar.gz
Conditionals testing for null $CC were backwards.
Diffstat (limited to 'configure1.in')
-rwxr-xr-xconfigure1.in7
1 files changed, 4 insertions, 3 deletions
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
;;
* )