8b20c79
From f2618d3474090751ae364ca326f3563797cce54a Mon Sep 17 00:00:00 2001
8b20c79
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
8b20c79
Date: Mon, 18 Sep 2017 17:09:52 +0200
8b20c79
Subject: [PATCH] build-sys: bump xslt maxdepth limit
8b20c79
8b20c79
With libxslt-1.30, builds were failing on some recursion depth limit
8b20c79
with systemd.index.xml. Bumping the limit fixes the issue.
8b20c79
---
8b20c79
 man/meson.build | 1 +
8b20c79
 1 file changed, 1 insertion(+)
8b20c79
8b20c79
diff --git a/man/meson.build b/man/meson.build
8b20c79
index 8ddbd5557c..5b6a21fb9f 100644
8b20c79
--- a/man/meson.build
8b20c79
+++ b/man/meson.build
8b20c79
@@ -11,6 +11,7 @@ want_html = want_html != 'false' and xsltproc.found()
8b20c79
 xsltproc_flags = [
8b20c79
         '--nonet',
8b20c79
         '--xinclude',
8b20c79
+        '--maxdepth', '9000',
8b20c79
         '--stringparam', 'man.output.quietly', '1',
8b20c79
         '--stringparam', 'funcsynopsis.style', 'ansi',
8b20c79
         '--stringparam', 'man.authors.section.enabled', '0',
8b20c79
-- 
8b20c79
2.13.5
8b20c79