changeset 6848:df94ce8c363c

(CFLAGS): Use shell syntax, not Makefile.
author Karl Heuer <kwzh@gnu.org>
date Wed, 13 Apr 1994 17:13:42 +0000
parents 9481abcaa7de
children e0b9e757376c
files configure1.in
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure1.in	Wed Apr 13 16:18:35 1994 +0000
+++ b/configure1.in	Wed Apr 13 17:13:42 1994 +0000
@@ -1317,9 +1317,9 @@
 #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 @@
 
 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
+]