changeset 110963:8e3439ed2228

* lisp/Makefile.in (compile-clean): Use `` instead of $(). (Former is more portable than the latter.)
author Glenn Morris <rgm@gnu.org>
date Tue, 12 Oct 2010 20:23:47 -0700
parents b6368ce2d119
children 388aaaced495
files lisp/ChangeLog lisp/Makefile.in
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Tue Oct 12 20:17:59 2010 -0700
+++ b/lisp/ChangeLog	Tue Oct 12 20:23:47 2010 -0700
@@ -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.
--- a/lisp/Makefile.in	Tue Oct 12 20:17:59 2010 -0700
+++ b/lisp/Makefile.in	Tue Oct 12 20:23:47 2010 -0700
@@ -249,7 +249,7 @@
 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"; \