Skip to content

Commit

Permalink
Fix "missing configuration file" error during custom build using auto…
Browse files Browse the repository at this point in the history
…tools
  • Loading branch information
micl2e2 authored and madeye committed Nov 23, 2022
1 parent 7f7f68a commit 3bcf258
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ASCIIDOC = @ASCIIDOC@
ASCIIDOC_EXTRA =
MANPAGE_XSL = manpage-normal.xsl
MANPAGE_XSL = $(srcdir)/manpage-normal.xsl
XMLTO = @XMLTO@
XMLTO_EXTRA = -m manpage-bold-literal.xsl
XMLTO_EXTRA = -m $(srcdir)/manpage-bold-literal.xsl
GZIPCMD = @GZIP@
INSTALL = @INSTALL@
RM = @RM@
Expand Down Expand Up @@ -46,11 +46,11 @@ html-local: $(MAN_HTML)
$(AM_V_GEN)$(XMLTO) -m $(MANPAGE_XSL) $(XMLTO_EXTRA) man $<

%.xml: %.asciidoc
$(AM_V_GEN)$(ASCIIDOC) -b docbook -d manpage -f asciidoc.conf \
$(AM_V_GEN)$(ASCIIDOC) -b docbook -d manpage -f $(srcdir)/asciidoc.conf \
-aversion=$(VERSION) $(ASCIIDOC_EXTRA) -o $@ $<

%.html: %.asciidoc
$(AM_V_GEN)$(ASCIIDOC) -b html4 -d article -f asciidoc.conf \
$(AM_V_GEN)$(ASCIIDOC) -b html4 -d article -f $(srcdir)/asciidoc.conf \
-aversion=$(VERSION) $(ASCIIDOC_EXTRA) -o $@ $<

doc_DATA = $(MAN_HTML)
Expand Down

0 comments on commit 3bcf258

Please sign in to comment.