summaryrefslogtreecommitdiff
path: root/docs/Makefile
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2022-11-19 15:39:40 +0100
committerJonas Bernoulli <jonas@bernoul.li>2022-11-19 15:39:40 +0100
commit8066a6e9a9e2e3d8810e4b6e23506c54f2842722 (patch)
tree81e3b6adc7e22bc7af22086f0e94a1843b74cd16 /docs/Makefile
parent4ca225bf1c54d6dab2ba7e734f594419c7769e36 (diff)
make: Explicitly specify output directory for makeinfo --html
The default output directory differs between makeinfo versions.
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 1e2385b..a70c87a 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