diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-12-19 19:55:54 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-12-19 19:55:54 +0100 |
commit | 38c67e2a442d875c1de6f5aae46647a195230b05 (patch) | |
tree | 09e2a1ec55e722f854ee41374edb3b410cbcc738 /Makefile.am | |
parent | 2e4a6ff47b311216829ed0f48f17ee9bc35641dc (diff) |
man: generate HTML instead of XHTML with XSL docbook to work around 'fsfunc' noise
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index e689355cee..656909c6c7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1771,11 +1771,11 @@ XSLTPROC_PROCESS_MAN_IN = \ XSLTPROC_PROCESS_HTML = \ $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \ - $(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/xhtml-1_1/docbook.xsl $< + $(XSLTPROC) -o $@ $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $< XSLTPROC_PROCESS_HTML_IN = \ $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \ - $(XSLTPROC) -o ${@:.in=} $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/xhtml-1_1/docbook.xsl $< && \ + $(XSLTPROC) -o ${@:.in=} $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $< && \ mv ${@:.in=} $@ man/%.1: man/%.xml |