Skip to content

Commit 6e37389

Browse files
committed
doc: Don't fail if manpages fail to build
Even with installed asciidoc and xsltproc the build will fail if xsltproc cannot find the required stylesheet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl. Ignore such errors until there is a better check in configure. Signed-off-by: Stefan Weil <[email protected]>
1 parent 42ea432 commit 6e37389

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ html: ${man_MANS:%=%.html}
3737
SUFFIXES = .asc .html
3838

3939
.asc:
40-
asciidoc -b docbook -d manpage -o - $< | \
40+
-asciidoc -b docbook -d manpage -o - $< | \
4141
xsltproc --nonet $(man_xslt) -
4242

4343
.asc.html:

0 commit comments

Comments
 (0)