branch: elpa/git-commit commit b6cfd01f3733091528230a3d9eddb0df87a34231 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
make: Explicitly specify output directory for makeinfo --html The default output directory differs between makeinfo versions. --- docs/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index eecc665c5d..00dbb9cb93 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -39,12 +39,12 @@ HTML_FIXUP_MENU = '/<\/body>/i<div id="s-css-s--menu"><\/div>' html-dir: $(TEXIFILES) @printf "Generating magit/*.html\n" - @$(MAKEINFO) --html $(MANUAL_HTML_ARGS) magit.texi + @$(MAKEINFO) --html -o $(PKG)/ $(MANUAL_HTML_ARGS) magit.texi @for f in $$(find magit -name '*.html') ; do \ sed -i -e $(HTML_FIXUP_CSS) -e $(HTML_FIXUP_ONLOAD) -e $(HTML_FIXUP_MENU) $$f ; \ done @printf "Generating magit-section/*.html\n" - @$(MAKEINFO) --html $(MANUAL_HTML_ARGS) magit-section.texi + @$(MAKEINFO) --html -o $(PKG)/ $(MANUAL_HTML_ARGS) magit-section.texi @for f in $$(find magit-section -name '*.html') ; do \ sed -i -e $(HTML_FIXUP_CSS) -e $(HTML_FIXUP_ONLOAD) -e $(HTML_FIXUP_MENU) $$f ; \ done