summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--waftools/checks/custom.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/waftools/checks/custom.py b/waftools/checks/custom.py
index fc57bd92d5..3126868164 100644
--- a/waftools/checks/custom.py
+++ b/waftools/checks/custom.py
@@ -49,11 +49,10 @@ def check_lua(ctx, dependency_identifier):
( '51', 'lua >= 5.1.0 lua < 5.2.0'),
( '51deb', 'lua5.1 >= 5.1.0'), # debian
( '51fbsd', 'lua-5.1 >= 5.1.0'), # FreeBSD
- ( 'luajit', 'luajit >= 2.0.0' ),
- # assume all our dependencies link with 5.1
( '52', 'lua >= 5.2.0' ),
( '52deb', 'lua5.2 >= 5.2.0'), # debian
( '52fbsd', 'lua-5.2 >= 5.2.0'), # FreeBSD
+ ( 'luajit', 'luajit >= 2.0.0' ),
]
if ctx.options.LUA_VER: