From: Adrian Szyndela Date: Wed, 12 Dec 2018 15:42:19 +0000 (+0100) Subject: dbus-policychecker: adjust maxdepth for xsltproc X-Git-Tag: submit/tizen/20180808.030253~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6b28fb34ed84c7a5240e96629e1889f8a7ffa5a6;p=platform%2Fcore%2Fsystem%2Fdbus-tools.git 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 --- 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"