diff options
| author | Richard M. Stallman | 1994-02-03 05:55:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-02-03 05:55:12 +0000 |
| commit | 990a74216b4a7ec2f8cc06ba0118b5bebaa26137 (patch) | |
| tree | 72ff46657cb9ef7337e7f91ec2027fb1fdf4f53b | |
| parent | 087a5f816bcdce2189a99558a54cb6562078be6a (diff) | |
| download | emacs-990a74216b4a7ec2f8cc06ba0118b5bebaa26137.tar.gz emacs-990a74216b4a7ec2f8cc06ba0118b5bebaa26137.zip | |
(Using NON_GNU_CPP): Don't lose if it has spaces.
| -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 | |||
| 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. |
| 1059 | if [ x$NON_GNU_CPP = x ] || [ x$GCC = x1 ] | 1059 | if [ "x$NON_GNU_CPP" = x ] || [ x$GCC = x1 ] |
| 1060 | then true | 1060 | then true |
| 1061 | else | 1061 | else |
| 1062 | CPP=$NON_GNU_CPP | 1062 | CPP="$NON_GNU_CPP" |
| 1063 | fi | 1063 | fi |
| 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. |