From 55ce26e454f41125fe4a1cccf90d2e0631ef3627 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 23 Nov 2013 16:03:48 +0100 Subject: build: also run the test binary during the lua checks --- waftools/checks/custom.py | 5 +++-- 1 file 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) -- cgit v1.2.3