summaryrefslogtreecommitdiffstats
path: root/waftools/checks/custom.py
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2013-12-04 18:57:29 +0100
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2013-12-04 19:31:28 +0100
commitbf90317ad14dde82f16a0f0f3d2561d38ac970ff (patch)
tree8784489fa04851c967814c026b694ce4577b3b6a /waftools/checks/custom.py
parentaeed84bd2773cf730be0c487c535dcc502249f9b (diff)
downloadmpv-bf90317ad14dde82f16a0f0f3d2561d38ac970ff.tar.bz2
mpv-bf90317ad14dde82f16a0f0f3d2561d38ac970ff.tar.xz
build: remove execute kwarg to check_cc when cross-compiling
This prevents waf from running test programs after compilation. A better approach would be to only remove this option if the check actually errors, but we are using this only for Lua anyway.
Diffstat (limited to 'waftools/checks/custom.py')
-rw-r--r--waftools/checks/custom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py
index fee56134b4..09a5c01018 100644
--- a/waftools/checks/custom.py
+++ b/waftools/checks/custom.py
@@ -61,7 +61,7 @@ def check_lua(ctx, dependency_identifier):
[lv for lv in lua_versions if lv[0] == ctx.options.LUA_VER]
for lua_version, pkgconfig_query in lua_versions:
- if compose_checks(
+ if compose_checks(
check_pkg_config(pkgconfig_query, uselib_store=lua_version),
check_cc(fragment=fragment,
use=[lua_version] + quvi_lib_storage,