branch: externals/auctex commit 532665df71a5ecb0dac627a5e5f3af52fd2859f4 Author: Tassilo Horn <t...@gnu.org> Commit: Tassilo Horn <t...@gnu.org>
Don't move info files top-level --- GNUmakefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 80b8ba4137..50254fb7c5 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -93,10 +93,9 @@ doc/preview-dtxdoc.texi: latex/preview.dtx doc/preview-dtxdoc.pl TEXI_SOURCES:=$(wildcard doc/*.texi) doc/version.texi doc/preview-dtxdoc.texi $(INFO_FILES): %.info: $(TEXI_SOURCES) cd doc; $(MAKEINFO) --no-split $*.texi - mv doc/$*.info $@ dir: $(INFO_FILES) - for f in $(INFO_FILES); do $(INSTALL_INFO) --info-dir=. $$f; done + for f in $(INFO_FILES); do $(INSTALL_INFO) --info-dir=doc doc/$$f; done $(LATEX_FILES): latex/preview.dtx latex/bootstrap.ins cd latex; $(TEX) '\nonstopmode \input bootstrap.ins'