diff options
| author | Karl Heuer | 1994-04-13 17:13:42 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-04-13 17:13:42 +0000 |
| commit | 5f990f9f5520946f2e55a21e3a8ecfd208ef2551 (patch) | |
| tree | 3f92cbd0ab2270befedcefbd6a8beffcb297ea81 | |
| parent | f79f58bc2984a0acd672439711e86b778d8cbffc (diff) | |
| download | emacs-5f990f9f5520946f2e55a21e3a8ecfd208ef2551.tar.gz emacs-5f990f9f5520946f2e55a21e3a8ecfd208ef2551.zip | |
(CFLAGS): Use shell syntax, not Makefile.
| -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 | |||
| 1317 | #endif | 1317 | #endif |
| 1318 | 1318 | ||
| 1319 | #ifdef __GNUC__ | 1319 | #ifdef __GNUC__ |
| 1320 | configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH $(CFLAGS) | 1320 | configure___ CFLAGS=C_DEBUG_SWITCH C_OPTIMIZE_SWITCH ${CFLAGS} |
| 1321 | #else | 1321 | #else |
| 1322 | configure___ CFLAGS=C_DEBUG_SWITCH $(CFLAGS) | 1322 | configure___ CFLAGS=C_DEBUG_SWITCH ${CFLAGS} |
| 1323 | #endif | 1323 | #endif |
| 1324 | ' > ${tempcname} | 1324 | ' > ${tempcname} |
| 1325 | # The value of CPP is a quoted variable reference, so we need to do this | 1325 | # The value of CPP is a quoted variable reference, so we need to do this |
| @@ -1604,4 +1604,4 @@ rm ${tempcname} | |||
| 1604 | 1604 | ||
| 1605 | cat lib-src/Makefile | sed -e "s/@libsrc_libs@/$libsrc_libs/" > lib-src/Makefoo | 1605 | cat lib-src/Makefile | sed -e "s/@libsrc_libs@/$libsrc_libs/" > lib-src/Makefoo |
| 1606 | mv lib-src/Makefoo lib-src/Makefile | 1606 | mv lib-src/Makefoo lib-src/Makefile |
| 1607 | ] \ No newline at end of file | 1607 | ] |