summaryrefslogtreecommitdiffstats
path: root/Makefile.rules.in
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2014-04-14 08:18:47 +0200
committerPatrick McHardy <kaber@trash.net>2014-04-14 08:22:48 +0200
commitb65f854278c7412b9dd2f6b335ad1f7e32d83d34 (patch)
tree70a1bf4d0c0b4a0f6998b927888c545540125e98 /Makefile.rules.in
parentc3e12a0fb85e68011f70b232a729558022f3aeb7 (diff)
build: fix documentation build
Handle the docbook2x-man mess that is called differently on different distributions. Also switch to dblatex since db2pdf is unable to handle XML on Fedora (and probably other distributions). Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'Makefile.rules.in')
-rw-r--r--Makefile.rules.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules.in b/Makefile.rules.in
index ae563a54..6a009161 100644
--- a/Makefile.rules.in
+++ b/Makefile.rules.in
@@ -37,11 +37,11 @@ configure: configure.ac
%.8: %.xml $(makedeps)
@echo -e " MAN\t\t$@"
- (cd $(SUBDIR); docbook2x-man ../$<)
+ (cd $(SUBDIR); $(DB2MAN) --xinclude ../$<)
%.pdf: %.xml $(makedeps)
@echo -e " PDF\t\t$@"
- db2pdf -o $(SUBDIR) $<
+ dblatex -q -t pdf -o $@ $<
archive:
git archive --prefix=nftables-@PACKAGE_VERSION@/ HEAD | \