Quieten emacs-devel.

* doc/misc/Makefile.in (maintainer-clean): Remove harmless, long-standing error.

* doc/lispref/Makefile.in (infoclean): Remove harmless, long-standing error.

* doc/lispintro/Makefile.in (infoclean): Remove harmless, long-standing error.

* doc/emacs/Makefile.in (infoclean): Remove harmless, long-standing error.
This commit is contained in:
Glenn Morris 2010-10-09 11:39:01 -07:00
parent abd40fb4ee
commit aa9db089bc
8 changed files with 13 additions and 4 deletions

View file

@ -1,5 +1,7 @@
2010-10-09 Glenn Morris <rgm@gnu.org>
* Makefile.in (infoclean): Remove harmless, long-standing error.
* Makefile.in ($(infodir)): Delete rule.
(mkinfodir): New.
($(infodir)/emacs): Use $mkinfodir instead of infodir.

View file

@ -166,7 +166,7 @@ distclean: clean
## In the standalone tarfile, the clean rule runs this.
infoclean:
-cd $(infodir) && rm -f emacs emacs-[1-9] emacs-[1-9][0-9]
-cd $(srcdir) && cd $(infodir) && rm -f emacs emacs-[1-9] emacs-[1-9][0-9]
maintainer-clean: distclean infoclean

View file

@ -1,5 +1,7 @@
2010-10-09 Glenn Morris <rgm@gnu.org>
* Makefile.in (infoclean): Remove harmless, long-standing error.
* Makefile.in ($(infodir)): Delete rule.
(mkinfodir): New.
($(infodir)/eintr): Use $mkinfodir instead of infodir.

View file

@ -78,7 +78,7 @@ clean: mostlyclean
distclean: clean
infoclean:
-cd $(infodir) && rm -f eintr eintr-[1-9]
-cd $(srcdir) && cd $(infodir) && rm -f eintr eintr-[1-9]
maintainer-clean: distclean infoclean

View file

@ -1,5 +1,7 @@
2010-10-09 Glenn Morris <rgm@gnu.org>
* Makefile.in (infoclean): Remove harmless, long-standing error.
* Makefile.in ($(infodir)): Delete rule.
(mkinfodir): New.
($(infodir)/elisp): Use $mkinfodir instead of infodir.

View file

@ -130,7 +130,7 @@ clean: mostlyclean
distclean: clean
infoclean:
-cd $(infodir) && rm -f elisp elisp-[1-9] elisp-[1-9][0-9]
-cd $(srcdir) && cd $(infodir) && rm -f elisp elisp-[1-9] elisp-[1-9][0-9]
maintainer-clean: distclean infoclean

View file

@ -1,5 +1,7 @@
2010-10-09 Glenn Morris <rgm@gnu.org>
* Makefile.in (maintainer-clean): Remove harmless, long-standing error.
* Makefile.in ($(infodir)): Delete rule.
(mkinfodir): New. Use it in all the info rules, rather than depending
on infodir.

View file

@ -675,8 +675,9 @@ clean: mostlyclean
distclean: clean
# rm -f Makefile
## infodir is relative to srcdir.
maintainer-clean: distclean
for file in $(INFO_TARGETS); do \
cd $(srcdir); for file in $(INFO_TARGETS); do \
rm -f $${file} $${file}-[1-9] $${file}-[1-9][0-9]; \
done