diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-02-03 05:55:12 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-02-03 05:55:12 +0000 |
commit | e91f3b94ca73f17e38c943822ec1241bb1ab2ce7 (patch) | |
tree | 80966f4ff47e2a18bf80008e7d06e55e5b035aa8 /configure1.in | |
parent | 3d1c9f491c3789f655ef4ae5b75d59a4979836e5 (diff) | |
download | emacs-e91f3b94ca73f17e38c943822ec1241bb1ab2ce7.tar.gz |
(Using NON_GNU_CPP): Don't lose if it has spaces.
Diffstat (limited to 'configure1.in')
-rwxr-xr-x | configure1.in | 4 |
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 #### Some systems specify a CPP to use unless we are using GCC. #### Now that we know whether we are using GCC, we can decide whether #### to use that one. -if [ x$NON_GNU_CPP = x ] || [ x$GCC = x1 ] +if [ "x$NON_GNU_CPP" = x ] || [ x$GCC = x1 ] then true else - CPP=$NON_GNU_CPP + CPP="$NON_GNU_CPP" fi #### Some systems specify a CC to use unless we are using GCC. |