build-sys: bump xslt maxdepth limit (#6863)
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 19 Sep 2017 06:04:02 +0000 (08:04 +0200)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 19 Sep 2017 06:04:02 +0000 (15:04 +0900)
With libxslt-1.30, builds were failing on some recursion depth limit
with systemd.index.xml. Bumping the limit fixes the issue.

man/meson.build

index 8ddbd55..5b6a21f 100644 (file)
@@ -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',