aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-02-03 05:55:12 +0000
committerRichard M. Stallman1994-02-03 05:55:12 +0000
commit990a74216b4a7ec2f8cc06ba0118b5bebaa26137 (patch)
tree72ff46657cb9ef7337e7f91ec2027fb1fdf4f53b
parent087a5f816bcdce2189a99558a54cb6562078be6a (diff)
downloademacs-990a74216b4a7ec2f8cc06ba0118b5bebaa26137.tar.gz
emacs-990a74216b4a7ec2f8cc06ba0118b5bebaa26137.zip
(Using NON_GNU_CPP): Don't lose if it has spaces.
-rwxr-xr-xconfigure1.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure1.in b/configure1.in
index 0e7e50f5863..c2780e1d012 100755
--- a/configure1.in
+++ b/configure1.in
@@ -1056,10 +1056,10 @@ esac
1056#### Some systems specify a CPP to use unless we are using GCC. 1056#### Some systems specify a CPP to use unless we are using GCC.
1057#### Now that we know whether we are using GCC, we can decide whether 1057#### Now that we know whether we are using GCC, we can decide whether
1058#### to use that one. 1058#### to use that one.
1059if [ x$NON_GNU_CPP = x ] || [ x$GCC = x1 ] 1059if [ "x$NON_GNU_CPP" = x ] || [ x$GCC = x1 ]
1060then true 1060then true
1061else 1061else
1062 CPP=$NON_GNU_CPP 1062 CPP="$NON_GNU_CPP"
1063fi 1063fi
1064 1064
1065#### Some systems specify a CC to use unless we are using GCC. 1065#### Some systems specify a CC to use unless we are using GCC.