From: Rainer Orth Date: Wed, 13 Oct 2010 03:23:47 +0000 (-0700) Subject: * lisp/Makefile.in (compile-clean): Use `` instead of $(). X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~46^2~30 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=290fe46441c67f2c533fe549024ad14bf490690b;p=emacs.git * lisp/Makefile.in (compile-clean): Use `` instead of $(). (Former is more portable than the latter.) Fixes: debbugs:7178 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fbf07f8dd4a..08fee1b1df3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2010-10-13 Rainer Orth (tiny change) + + * Makefile.in (compile-clean): Use `` instead of $(). (Bug#7178) + 2010-10-12 Chong Yidong * 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 compile-clean: @cd $(lisp); $(setwins); \ elcs=`echo "$$wins " | sed -e 's|/\./|/|g' -e 's|/\. | |g' -e 's| |/*.elc |g'`; \ - for el in $$(echo $$elcs | sed -e 's/\.elc/\.el/g'); do \ + for el in `echo $$elcs | sed -e 's/\.elc/\.el/g'`; do \ if test -f "$$el" -o \! -f "$${el}c"; then :; else \ echo rm "$${el}c"; \ rm "$${el}c"; \