summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-06-17 02:55:11 +0000
committerJim Blandy <jimb@redhat.com>1993-06-17 02:55:11 +0000
commitb73fe8393078c6274871b95f496c20545fa7830f (patch)
tree72c2560efdf259f845226cbe40163e499b934fb1
parent804962796c9c54adc8df4b5367cac87c5054f402 (diff)
downloademacs-b73fe8393078c6274871b95f496c20545fa7830f.tar.gz
* 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 '
' > ${tempcname}
# The value of CPP is a quoted variable reference, so we need to do this
# to get its actual value...
-foo=`eval "echo $CPP"`
-eval `${foo} -Isrc ${tempcname} \
+CPP=`eval "echo $CPP"`
+eval `${CPP} -Isrc ${tempcname} \
| grep '@configure@' \
| sed -e 's/^@configure@ \([^=]*=\)\(.*\)$/\1"\2"/'`
rm ${tempcname}