diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-10 20:11:32 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-10 20:11:32 +0000 |
commit | f4828eac53ce612b95960ed1a4f579671f15eb94 (patch) | |
tree | 857cbffebaa1ee040046414d438891f912ac58bd /configure1.in | |
parent | 00ee57f3f2bbc8fc2d9e7211251c2ccffbb24776 (diff) | |
download | emacs-f4828eac53ce612b95960ed1a4f579671f15eb94.tar.gz |
(using NON_GNU_CPP): Fix test for CPP already set.
Diffstat (limited to 'configure1.in')
-rwxr-xr-x | configure1.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure1.in b/configure1.in index 0e59358a6d5..90c21084b4f 100755 --- a/configure1.in +++ b/configure1.in @@ -1109,7 +1109,7 @@ 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 ] || [ "x$CPP" = x ] +if [ "x$NON_GNU_CPP" = x ] || [ x$GCC = x1 ] || [ "x$CPP" != x ] then true else CPP="$NON_GNU_CPP" |