From 90e3e990217081691aa0f89e712dd2ae771be876 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 25 Oct 2014 22:51:41 +0200 Subject: build: fix Lua detection We need to manually define the flag since we are using a separate identifier for each of the Lua checks. This was done before 9b45b48 by the composed check with a define_key (see waftools/checks/generic.py). The pkg-config check was the only one to not redefine a define key because Waf already does that automatically when we call the generated function with the same identifier as the generator function. Now if they are called with two different arguments we will get two different definitions. Fixes #1218 --- waftools/checks/generic.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/waftools/checks/generic.py b/waftools/checks/generic.py index e2ea78092f..10c52b4f54 100644 --- a/waftools/checks/generic.py +++ b/waftools/checks/generic.py @@ -99,8 +99,10 @@ def check_pkg_config(*args, **kw_ext): result = bool(ctx.check_cfg(**opts)) ConfigSet.append_unique = original_append_unique - if not result: - defkey = DependencyInflector(dependency_identifier).define_key() + defkey = DependencyInflector(dependency_identifier).define_key() + if result: + ctx.define(defkey, 1) + else: ctx.undefine(defkey) return result return fn -- cgit v1.2.3