diff options
| author | Jim Blandy | 1993-06-17 02:55:11 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-06-17 02:55:11 +0000 |
| commit | b73fe8393078c6274871b95f496c20545fa7830f (patch) | |
| tree | 72c2560efdf259f845226cbe40163e499b934fb1 | |
| parent | 804962796c9c54adc8df4b5367cac87c5054f402 (diff) | |
| download | emacs-b73fe8393078c6274871b95f496c20545fa7830f.tar.gz emacs-b73fe8393078c6274871b95f496c20545fa7830f.zip | |
* configure.in (CPP): Autoconf sets this to a shell variable
reference, which doesn't work when it's edited into a makefile.
Expand that variable reference.
| -rwxr-xr-x | configure1.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure1.in b/configure1.in index 2ed13c1dd2e..9624fad4f01 100755 --- a/configure1.in +++ b/configure1.in | |||
| @@ -1106,8 +1106,8 @@ echo ' | |||
| 1106 | ' > ${tempcname} | 1106 | ' > ${tempcname} |
| 1107 | # The value of CPP is a quoted variable reference, so we need to do this | 1107 | # The value of CPP is a quoted variable reference, so we need to do this |
| 1108 | # to get its actual value... | 1108 | # to get its actual value... |
| 1109 | foo=`eval "echo $CPP"` | 1109 | CPP=`eval "echo $CPP"` |
| 1110 | eval `${foo} -Isrc ${tempcname} \ | 1110 | eval `${CPP} -Isrc ${tempcname} \ |
| 1111 | | grep '@configure@' \ | 1111 | | grep '@configure@' \ |
| 1112 | | sed -e 's/^@configure@ \([^=]*=\)\(.*\)$/\1"\2"/'` | 1112 | | sed -e 's/^@configure@ \([^=]*=\)\(.*\)$/\1"\2"/'` |
| 1113 | rm ${tempcname} | 1113 | rm ${tempcname} |