From: Karl Heuer Date: Wed, 13 Apr 1994 17:13:42 +0000 (+0000) Subject: (CFLAGS): Use shell syntax, not Makefile. X-Git-Tag: emacs-19.34~9005 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5f990f9f5520946f2e55a21e3a8ecfd208ef2551;p=emacs.git (CFLAGS): Use shell syntax, not Makefile. --- 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 +]