]> code.delx.au - gnu-emacs/commitdiff
* Makefile.in (distclean, bootstrap-clean, maintainer-clean):
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 20 Aug 2013 08:30:24 +0000 (01:30 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 20 Aug 2013 08:30:24 +0000 (01:30 -0700)
Fix shell-operator precedence problem in previous change.

ChangeLog
Makefile.in

index 1d2adca4044eec2bda2545d6aac340297fee4d05..a86343b09535354fbb3593a207ba1c6095a78b8c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-08-20  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * Makefile.in (distclean, bootstrap-clean, maintainer-clean):
+       Fix shell-operator precedence problem in previous change.
+
 2013-08-20  Glenn Morris  <rgm@gnu.org>
 
        * Makefile.in (distclean, bootstrap-clean, maintainer-clean):
index a0d91171d33928ae686b13ed59a2e5b686f99ea9..a29fd353346850af2c2b4f1d8ca63cc9d7514c26 100644 (file)
@@ -859,8 +859,9 @@ distclean: FRC
        (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 @@ bootstrap-clean: FRC
        (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 @@ top_maintainer_clean=\
 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