* lisp/Makefile.in (compile-clean): Use `` instead of $().
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Wed, 13 Oct 2010 03:23:47 +0000 (20:23 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 13 Oct 2010 03:23:47 +0000 (20:23 -0700)
(Former is more portable than the latter.)

Fixes: debbugs:7178

lisp/ChangeLog
lisp/Makefile.in

index fbf07f8..08fee1b 100644 (file)
@@ -1,3 +1,7 @@
+2010-10-13  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>  (tiny change)
+
+       * Makefile.in (compile-clean): Use `` instead of $().  (Bug#7178)
+
 2010-10-12  Chong Yidong  <cyd@stupidchicken.com>
 
        * cus-theme.el (custom-theme--listed-faces): Add cursor face.
index 1e2a7c4..2b2081a 100644 (file)
@@ -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"; \