From 9fe559ecea4796c0185edae6f0b2d17b746eecc5 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Mon, 5 Feb 2024 20:25:59 +1300 Subject: [PATCH] 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 --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):