summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorLukas Larsson <lukas@erlang.org>2020-03-12 16:47:48 +0100
committerLukas Larsson <lukas@erlang.org>2020-03-27 11:02:23 +0100
commit181759da389a63bae6d6c77cc402ab427d055230 (patch)
tree9a116a077f7d6b4c9d9bfb614c81ea88a385a7f6 /make
parentd773632085c8a81a2fc7d860bf26a2b707ede5d5 (diff)
downloaderlang-181759da389a63bae6d6c77cc402ab427d055230.tar.gz
docgen: Make all internal href links in chunks absolute
Diffstat (limited to 'make')
-rw-r--r--make/otp.mk.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/make/otp.mk.in b/make/otp.mk.in
index 02bd1fa62a..eebf4a27e4 100644
--- a/make/otp.mk.in
+++ b/make/otp.mk.in
@@ -328,10 +328,10 @@ $(PDFDIR)/%.pdf: %.fo
$(FOP) -c $(FOP_CONFIG) -cache $(ERL_TOP)/make/$(TARGET)/fop-fonts.cache -fo $< -pdf $@
$(CHUNKSDIR)/%.chunk: $(XMLDIR)/%.xml ../../ebin/%.beam $(DOCGEN)/ebin/docgen_xml_to_chunk.beam
- $(gen_verbose)escript $(DOCGEN)/priv/bin/chunk.escript $^ $@
+ $(gen_verbose)escript $(DOCGEN)/priv/bin/chunk.escript $(APPLICATION) $^ $@
$(CHUNKSDIR)/%.chunk: $(XMLDIR)/%.xml ../../preloaded/ebin/%.beam $(DOCGEN)/ebin/docgen_xml_to_chunk.beam
- $(gen_verbose)escript $(DOCGEN)/priv/bin/chunk.escript $^ $@
+ $(gen_verbose)escript $(DOCGEN)/priv/bin/chunk.escript $(APPLICATION) $^ $@
$(CHUNKSDIR)/%.chunk: ../../ebin/%.beam $(DOCGEN)/ebin/docgen_xml_to_chunk.beam
- $(gen_verbose)escript $(DOCGEN)/priv/bin/chunk.escript $^ $@
+ $(gen_verbose)escript $(DOCGEN)/priv/bin/chunk.escript $(APPLICATION) $^ $@