From e8c0be1ce932bfb99fdd1a50e08fab187efed6ca Mon Sep 17 00:00:00 2001 From: David Runge Date: Sat, 8 Jan 2022 00:39:55 +0100 Subject: [PATCH] Fix build of jack-example-tools with waf autooptions wscript: In 61a708f2c6873881ae36fa2f01b38a15bfc3f681 a regression has been introduced, that always leads to not building the jack-example-tools (even if selected). This has been introduced due to the use of the wrong configuration environment `HAVE_JACK_EXAMPLE_TOOLS`, whereas it should have been `BUILD_JACK_EXAMPLE_TOOLS`. --- wscript | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wscript b/wscript index 58331797..16af1695 100644 --- a/wscript +++ b/wscript @@ -300,7 +300,7 @@ def configure(conf): else: conf.env['SYSTEMD_USER_UNIT_DIR'] = None - if conf.env['HAVE_JACK_EXAMPLE_TOOLS']: + if conf.env['BUILD_JACK_EXAMPLE_TOOLS']: conf.recurse('example-clients') conf.recurse('tools') @@ -806,14 +806,14 @@ def build(bld): build_drivers(bld) - if bld.env['HAVE_JACK_EXAMPLE_TOOLS']: + if bld.env['BUILD_JACK_EXAMPLE_TOOLS']: bld.recurse('example-clients') bld.recurse('tools') if bld.env['IS_LINUX'] or bld.env['IS_FREEBSD']: bld.recurse('man') bld.recurse('systemd') - if not bld.env['IS_WINDOWS'] and bld.env['HAVE_JACK_EXAMPLE_TOOLS']: + if not bld.env['IS_WINDOWS'] and bld.env['BUILD_JACK_EXAMPLE_TOOLS']: bld.recurse('tests') if bld.env['BUILD_JACKDBUS']: bld.recurse('dbus')