diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-08-15 09:19:22 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-08-15 09:19:22 +0000 |
commit | 4ebdb1b22cf8cc303e890bb22dda59301250c739 (patch) | |
tree | 8f318f66bff73de36f0dfe7d1c038e09eea64e7e | |
parent | 3cdac23c5374af019c5c8d78564075ab256f5822 (diff) | |
download | emacs-4ebdb1b22cf8cc303e890bb22dda59301250c739.tar.gz |
Do compute unexec, LIBX, system_malloc, etc
even if CPP env var was set by the user.
-rwxr-xr-x | configure1.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure1.in b/configure1.in index 6c9e3baf5da..fa23e8402b2 100755 --- a/configure1.in +++ b/configure1.in @@ -1431,10 +1431,10 @@ configure___ REAL_CFLAGS=C_DEBUG_SWITCH '${CFLAGS}' # The value of CPP is a quoted variable reference, so we need to do this # to get its actual value... CPP=`eval "echo $CPP"` +eval `${CPP} -Isrc ${tempcname} \ + | grep 'configure___' \ + | sed -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/'` if [ "x$CFLAGS" = x ]; then - eval `${CPP} -Isrc ${tempcname} \ - | grep 'configure___' \ - | sed -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/'` eval `${CPP} -Isrc -DTHIS_IS_CONFIGURE ${tempcname} \ | grep 'configure___' \ | sed -e 's/^configure___ \([^=]*=\)\(.*\)$/\1"\2"/'` |