diff options
Diffstat (limited to 'waftools')
-rw-r--r-- | waftools/checks/custom.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py index 6d6268ead7..e8ea9275c8 100644 --- a/waftools/checks/custom.py +++ b/waftools/checks/custom.py @@ -57,8 +57,9 @@ def check_lua(ctx, dependency_identifier): for lua_version, pkgconfig_query in lua_versions: if compose_checks( check_pkg_config(pkgconfig_query, uselib_store=lua_version), - check_cc(fragment=fragment, use=[lua_version] + quvi_lib_storage))\ - (ctx, dependency_identifier): + check_cc(fragment=fragment, + use=[lua_version] + quvi_lib_storage, + execute=True))(ctx, dependency_identifier): # XXX: this is a bit of a hack, ask waf developers if I can copy # the uselib_store to 'lua' ctx.mark_satisfied(lua_version) |