From: Paul Eggert Date: Tue, 20 Aug 2013 08:30:24 +0000 (-0700) Subject: * Makefile.in (distclean, bootstrap-clean, maintainer-clean): X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1686^2~166 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=236beba0c2cf9b757f7a25f1155a7f0f2d25f903;p=emacs.git * Makefile.in (distclean, bootstrap-clean, maintainer-clean): Fix shell-operator precedence problem in previous change. --- diff --git a/ChangeLog b/ChangeLog index 1d2adca4044..a86343b0953 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-08-20 Paul Eggert + + * Makefile.in (distclean, bootstrap-clean, maintainer-clean): + Fix shell-operator precedence problem in previous change. + 2013-08-20 Glenn Morris * Makefile.in (distclean, bootstrap-clean, maintainer-clean): diff --git a/Makefile.in b/Makefile.in index a0d91171d33..a29fd353346 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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