emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r101945: * lisp/Makefile.in (compile-


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101945: * lisp/Makefile.in (compile-clean): Use `` instead of $().
Date: Tue, 12 Oct 2010 20:23:47 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101945
author: Rainer Orth <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2010-10-12 20:23:47 -0700
message:
  * lisp/Makefile.in (compile-clean): Use `` instead of $().
  (Former is more portable than the latter.)
modified:
  lisp/ChangeLog
  lisp/Makefile.in
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-10-12 20:06:20 +0000
+++ b/lisp/ChangeLog    2010-10-13 03:23:47 +0000
@@ -1,3 +1,7 @@
+2010-10-13  Rainer Orth  <address@hidden>  (tiny change)
+
+       * Makefile.in (compile-clean): Use `` instead of $().  (Bug#7178)
+
 2010-10-12  Chong Yidong  <address@hidden>
 
        * cus-theme.el (custom-theme--listed-faces): Add cursor face.

=== modified file 'lisp/Makefile.in'
--- a/lisp/Makefile.in  2010-10-11 23:57:49 +0000
+++ b/lisp/Makefile.in  2010-10-13 03:23:47 +0000
@@ -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"; \


reply via email to

[Prev in Thread] Current Thread [Next in Thread]