From 6b28fb34ed84c7a5240e96629e1889f8a7ffa5a6 Mon Sep 17 00:00:00 2001 From: Adrian Szyndela Date: Wed, 12 Dec 2018 16:42:19 +0100 Subject: [PATCH] dbus-policychecker: adjust maxdepth for xsltproc 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 --- policychecker/check.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.34.1