]> code.delx.au - gnu-emacs/commitdiff
(Using NON_GNU_CPP): Don't lose if it has spaces.
authorRichard M. Stallman <rms@gnu.org>
Thu, 3 Feb 1994 05:55:12 +0000 (05:55 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 3 Feb 1994 05:55:12 +0000 (05:55 +0000)
configure1.in

index 0e7e50f58638fbe6734308b1f1902ed57aaebd41..c2780e1d012501144a4a44f6d42d592cc1aff935 100755 (executable)
@@ -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.