From: Zbigniew Jędrzejewski-Szmek Date: Tue, 19 Sep 2017 06:04:02 +0000 (+0200) Subject: build-sys: bump xslt maxdepth limit (#6863) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=7f16c6a9f99c376b60279cb114ccb57625dcc99f;p=elogind.git build-sys: bump xslt maxdepth limit (#6863) With libxslt-1.30, builds were failing on some recursion depth limit with elogind.index.xml. Bumping the limit fixes the issue. --- diff --git a/man/meson.build b/man/meson.build index ea1227f2c..7eb68e524 100644 --- a/man/meson.build +++ b/man/meson.build @@ -11,6 +11,7 @@ want_html = want_html != 'false' and xsltproc.found() xsltproc_flags = [ '--nonet', '--xinclude', + '--maxdepth', '9000', '--stringparam', 'man.output.quietly', '1', '--stringparam', 'funcsynopsis.style', 'ansi', '--stringparam', 'man.authors.section.enabled', '0',