summaryrefslogtreecommitdiff
path: root/doc/lispref/Makefile.in
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2014-04-16 18:35:20 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2014-04-16 18:35:20 -0700
commiteb36672f2bc4cb3eeed3bd802c340ccb8416ad26 (patch)
tree1cc231c6787df91adb3c1cb5566390598af83463 /doc/lispref/Makefile.in
parent290d7ac277986bd118e594a8100b3f40e4492cb1 (diff)
downloademacs-eb36672f2bc4cb3eeed3bd802c340ccb8416ad26.tar.gz
Be consistent about reporting infoclean failures.
* doc/emacs/Makefile.in (infoclean): * doc/lispintro/Makefile.in (infoclean): * doc/lispref/Makefile.in (infoclean): * doc/misc/Makefile.in (infoclean): Do not fail merely because the info directory does not exist, but do fail if it exists and can't be cleaned.
Diffstat (limited to 'doc/lispref/Makefile.in')
-rw-r--r--doc/lispref/Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/lispref/Makefile.in b/doc/lispref/Makefile.in
index bb8d4f82884..e7bfedfa583 100644
--- a/doc/lispref/Makefile.in
+++ b/doc/lispref/Makefile.in
@@ -171,7 +171,10 @@ distclean: clean
rm -f Makefile
infoclean:
- -cd $(buildinfodir) && rm -f elisp$(INFO_EXT) elisp$(INFO_EXT)-[1-9] elisp$(INFO_EXT)-[1-9][0-9]
+ rm -f \
+ $(buildinfodir)/elisp$(INFO_EXT) \
+ $(buildinfodir)/elisp$(INFO_EXT)-[1-9] \
+ $(buildinfodir)/elisp$(INFO_EXT)-[1-9][0-9]
maintainer-clean: distclean infoclean