From 6e37389fcd20bd57529992fff3f4bdb4ee457939 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Fri, 15 Feb 2019 15:13:45 +0100 Subject: [PATCH] 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 --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 660b7cc5..f86923e1 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -37,7 +37,7 @@ html: ${man_MANS:%=%.html} SUFFIXES = .asc .html .asc: - asciidoc -b docbook -d manpage -o - $< | \ + -asciidoc -b docbook -d manpage -o - $< | \ xsltproc --nonet $(man_xslt) - .asc.html: