From: Andrew Bartlett Date: Mon, 5 Feb 2024 07:25:59 +0000 (+1300) Subject: build: Call conf.CHECK_XSLTPROC_MANPAGES() directly in wscript X-Git-Tag: tdb-1.4.11~1609 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9fe559ecea4796c0185edae6f0b2d17b746eecc5;p=thirdparty%2Fsamba.git build: Call conf.CHECK_XSLTPROC_MANPAGES() directly in wscript This avoids relying on the indirect call via wscript in lib/{talloc,tdb,ldb} Signed-off-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- diff --git a/wscript b/wscript index 6b5d29bcfe5..8c75bc9bbd6 100644 --- a/wscript +++ b/wscript @@ -179,7 +179,7 @@ def configure(conf): conf.RECURSE('examples/winexe') conf.SAMBA_CHECK_PERL(mandatory=True) - conf.find_program('xsltproc', var='XSLTPROC') + conf.CHECK_XSLTPROC_MANPAGES() if conf.env.disable_python: if not (Options.options.without_ad_dc):