chiark / gitweb /
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)
committerSven Eden <yamakuzure@gmx.net>
Tue, 19 Sep 2017 06:04:02 +0000 (08:04 +0200)
With libxslt-1.30, builds were failing on some recursion depth limit
with elogind.index.xml. Bumping the limit fixes the issue.

man/meson.build

index ea1227f2cf559e8b27ebe27630259ca776cb3054..7eb68e524938cd37bd267b815250942ea11081a7 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',