branch: elpa/with-editor
commit 8066a6e9a9e2e3d8810e4b6e23506c54f2842722
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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/Makefile b/docs/Makefile
index 1e2385bc2a..a70c87a47a 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -44,7 +44,7 @@ HTML_FIXUP_MENU   = '/<\/body>/i<div 
id="s-css-s--menu"><\/div>'
 
 html-dir: $(PKG).texi
        @printf "Generating $(PKG)/*.html\n"
-       @$(MAKEINFO) --html $(MANUAL_HTML_ARGS) $<
+       @$(MAKEINFO) --html -o $(PKG)/ $(MANUAL_HTML_ARGS) $<
        @for f in $$(find $(PKG) -name '*.html') ; do \
        sed -i -e $(HTML_FIXUP_CSS) -e $(HTML_FIXUP_ONLOAD) -e 
$(HTML_FIXUP_MENU) $$f ; \
        done

Reply via email to