From: Ralph Boehme Date: Wed, 5 Sep 2018 11:46:37 +0000 (+0200) Subject: s3/wscript: fix bison detection X-Git-Tag: tdb-1.3.17~1718 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7612710d1e94d18f80649deb17e6defae9a5b23;p=thirdparty%2Fsamba.git s3/wscript: fix bison detection Signed-off-by: Ralph Boehme Reviewed-by: Andrew Bartlett --- diff --git a/source3/wscript b/source3/wscript index 9037b6488c4..4ecc3770329 100644 --- a/source3/wscript +++ b/source3/wscript @@ -1618,7 +1618,7 @@ main() { if Options.options.with_spotlight: Logs.info("Requested Spotlight support, checking for bison") - bison.detect(conf) + bison.configure(conf) if not conf.env['BISON']: conf.fatal("Spotlight support requested but bison missing") conf.CHECK_COMMAND('%s --version | head -n1' % conf.env['BISON'], msg='Using bison version', define=None, on_target=False)