aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-06-17 02:55:11 +0000
committerJim Blandy1993-06-17 02:55:11 +0000
commitb73fe8393078c6274871b95f496c20545fa7830f (patch)
tree72c2560efdf259f845226cbe40163e499b934fb1
parent804962796c9c54adc8df4b5367cac87c5054f402 (diff)
downloademacs-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-xconfigure1.in4
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...
1109foo=`eval "echo $CPP"` 1109CPP=`eval "echo $CPP"`
1110eval `${foo} -Isrc ${tempcname} \ 1110eval `${CPP} -Isrc ${tempcname} \
1111 | grep '@configure@' \ 1111 | grep '@configure@' \
1112 | sed -e 's/^@configure@ \([^=]*=\)\(.*\)$/\1"\2"/'` 1112 | sed -e 's/^@configure@ \([^=]*=\)\(.*\)$/\1"\2"/'`
1113rm ${tempcname} 1113rm ${tempcname}