emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r113957: * Makefile.in (distclean, bootstrap-clean,


From: Paul Eggert
Subject: [Emacs-diffs] trunk r113957: * Makefile.in (distclean, bootstrap-clean, maintainer-clean):
Date: Tue, 20 Aug 2013 08:30:53 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113957
revision-id: address@hidden
parent: address@hidden
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Tue 2013-08-20 01:30:24 -0700
message:
  * Makefile.in (distclean, bootstrap-clean, maintainer-clean):
  
  Fix shell-operator precedence problem in previous change.
modified:
  ChangeLog                      changelog-20091113204419-o5vbwnq5f7feedwu-1538
  Makefile.in                    makefile.in-20091113204419-o5vbwnq5f7feedwu-446
=== modified file 'ChangeLog'
--- a/ChangeLog 2013-08-20 06:36:10 +0000
+++ b/ChangeLog 2013-08-20 08:30:24 +0000
@@ -1,3 +1,8 @@
+2013-08-20  Paul Eggert  <address@hidden>
+
+       * Makefile.in (distclean, bootstrap-clean, maintainer-clean):
+       Fix shell-operator precedence problem in previous change.
+
 2013-08-20  Glenn Morris  <address@hidden>
 
        * Makefile.in (distclean, bootstrap-clean, maintainer-clean):

=== modified file 'Makefile.in'
--- a/Makefile.in       2013-08-20 06:36:10 +0000
+++ b/Makefile.in       2013-08-20 08:30:24 +0000
@@ -859,8 +859,9 @@
        (cd leim;     $(MAKE) $(MFLAGS) distclean)
        (cd lisp;     $(MAKE) $(MFLAGS) distclean)
        (cd nextstep && $(MAKE) $(MFLAGS) distclean)
-       [ ! -d test/automated ] || \
-         cd test/automated && $(MAKE) $(MFLAGS) distclean
+       [ ! -d test/automated ] || { \
+         cd test/automated && $(MAKE) $(MFLAGS) distclean; \
+       }
        ${top_distclean}
 
 ### `bootstrap-clean'
@@ -880,8 +881,9 @@
        (cd leim;     $(MAKE) $(MFLAGS) maintainer-clean)
        (cd lisp;     $(MAKE) $(MFLAGS) bootstrap-clean)
        (cd nextstep && $(MAKE) $(MFLAGS) maintainer-clean)
-       [ ! -d test/automated ] || \
-         cd test/automated && $(MAKE) $(MFLAGS) bootstrap-clean
+       [ ! -d test/automated ] || { \
+         cd test/automated && $(MAKE) $(MFLAGS) bootstrap-clean; \
+       }
        [ ! -f config.log ] || mv -f config.log config.log~
        ${top_bootclean}
 
@@ -902,8 +904,9 @@
 maintainer-clean: bootstrap-clean FRC
        (cd src;      $(MAKE) $(MFLAGS) maintainer-clean)
        (cd lisp;     $(MAKE) $(MFLAGS) maintainer-clean)
-       [ ! -d test/automated ] || \
-         cd test/automated && $(MAKE) $(MFLAGS) maintainer-clean
+       [ ! -d test/automated ] || { \
+         cd test/automated && $(MAKE) $(MFLAGS) maintainer-clean; \
+       }
        ${top_maintainer_clean}
 
 ### This doesn't actually appear in the coding standards, but Karl


reply via email to

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