diff options
| author | Rainer Orth | 2010-10-12 20:23:47 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-10-12 20:23:47 -0700 |
| commit | 290fe46441c67f2c533fe549024ad14bf490690b (patch) | |
| tree | 91881b5f9b34a135154c52adec5ace8d8920e038 | |
| parent | 013b96cc266560ea8f737d7ae3b4b21e16952e36 (diff) | |
| download | emacs-290fe46441c67f2c533fe549024ad14bf490690b.tar.gz emacs-290fe46441c67f2c533fe549024ad14bf490690b.zip | |
* lisp/Makefile.in (compile-clean): Use `` instead of $().
(Former is more portable than the latter.)
Fixes: debbugs:7178
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fbf07f8dd4a..08fee1b1df3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-10-13 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change) | ||
| 2 | |||
| 3 | * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178) | ||
| 4 | |||
| 1 | 2010-10-12 Chong Yidong <cyd@stupidchicken.com> | 5 | 2010-10-12 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * cus-theme.el (custom-theme--listed-faces): Add cursor face. | 7 | * cus-theme.el (custom-theme--listed-faces): Add cursor face. |
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 1e2a7c4d48b..2b2081a25d0 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -249,7 +249,7 @@ compile-main: compile-clean | |||
| 249 | compile-clean: | 249 | compile-clean: |
| 250 | @cd $(lisp); $(setwins); \ | 250 | @cd $(lisp); $(setwins); \ |
| 251 | elcs=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.elc |g'`; \ | 251 | elcs=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.elc |g'`; \ |
| 252 | for el in $$(echo $$elcs | sed -e 's/\.elc/\.el/g'); do \ | 252 | for el in `echo $$elcs | sed -e 's/\.elc/\.el/g'`; do \ |
| 253 | if test -f "$$el" -o \! -f "$${el}c"; then :; else \ | 253 | if test -f "$$el" -o \! -f "$${el}c"; then :; else \ |
| 254 | echo rm "$${el}c"; \ | 254 | echo rm "$${el}c"; \ |
| 255 | rm "$${el}c"; \ | 255 | rm "$${el}c"; \ |