# HG changeset patch # User Richard M. Stallman # Date 768600692 0 # Node ID 5e075fbbef1d385077e401825af8b2129c9bd575 # Parent d9b4098cebb75050129f8a5ca6045bb82439cbe8 (using NON_GNU_CPP): Fix test for CPP already set. diff -r d9b4098cebb7 -r 5e075fbbef1d configure1.in --- a/configure1.in Tue May 10 20:03:45 1994 +0000 +++ b/configure1.in Tue May 10 20:11:32 1994 +0000 @@ -1109,7 +1109,7 @@ #### 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"