summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Szyndela <adrian.s@samsung.com>2018-12-12 16:42:19 +0100
committerAdrian Szyndela <adrian.s@samsung.com>2018-12-12 16:42:19 +0100
commit6b28fb34ed84c7a5240e96629e1889f8a7ffa5a6 (patch)
tree06703181a0e97d4f8ceb8c0bb60410560a2cc125
parent9f931bdf593be12e01739a4196a0a07475aa1efd (diff)
downloaddbus-tools-6b28fb34ed84c7a5240e96629e1889f8a7ffa5a6.tar.gz
dbus-tools-6b28fb34ed84c7a5240e96629e1889f8a7ffa5a6.tar.bz2
dbus-tools-6b28fb34ed84c7a5240e96629e1889f8a7ffa5a6.zip
dbus-policychecker: adjust maxdepth for xsltprocsubmit/tizen/20181217.062834accepted/tizen/unified/20181217.142407
Maxdepth 20000 for xsltproc seems to be too low, as it complains for "potential infinite recursion" when there is no infinite recursion. Change-Id: I873c8a9a4ba4fd58e13557308bb55cf2470d9b82
-rwxr-xr-xpolicychecker/check.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/policychecker/check.in b/policychecker/check.in
index acb559b..fd3af57 100755
--- a/policychecker/check.in
+++ b/policychecker/check.in
@@ -2,7 +2,7 @@
set -e
-xslt_processor="xsltproc --nonet --novalid --maxdepth 20000"
+xslt_processor="xsltproc --nonet --novalid --maxdepth 25000"
tmpdir=`mktemp -d`
checker_dir="@datadir@/dbus-tools/policychecker"
schematron_dir="@datadir@/dbus-tools/policychecker/xslt"