diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-04-13 17:13:42 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-04-13 17:13:42 +0000 |
commit | 65a5bf1b81d605fad538529eec2571150f8dd865 (patch) | |
tree | 303b3e619d639dbc7706a04035b6446a3280788b /configure1.in | |
parent | 808994b143c2b65ea278793f508796176dd34447 (diff) | |
download | emacs-65a5bf1b81d605fad538529eec2571150f8dd865.tar.gz |
(CFLAGS): Use shell syntax, not Makefile.
Diffstat (limited to 'configure1.in')
-rwxr-xr-x | configure1.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure1.in b/configure1.in index 9040f09eec7..ec7e9f2246a 100755 --- a/configure1.in +++ b/configure1.in @@ -1317,9 +1317,9 @@ configure___ system_malloc=no #endif #ifdef __GNUC__ -configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH $(CFLAGS) +configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH ${CFLAGS} #else -configure___ CFLAGS=C_DEBUG_SWITCH $(CFLAGS) +configure___ CFLAGS=C_DEBUG_SWITCH ${CFLAGS} #endif ' > ${tempcname} # The value of CPP is a quoted variable reference, so we need to do this @@ -1604,4 +1604,4 @@ rm ${tempcname} cat lib-src/Makefile | sed -e "s/@libsrc_libs@/$libsrc_libs/" > lib-src/Makefoo mv lib-src/Makefoo lib-src/Makefile -]
\ No newline at end of file +] |