From 5deaa06788b7cb5183e949cba03a44bea84315c1 Mon Sep 17 00:00:00 2001 From: "Yichun Zhang (agentzh)" Date: Sat, 8 Apr 2017 17:33:54 -0700 Subject: [PATCH] dist-check: removed the -l option for standard Lua 5.1 intepreter. --- util/dist-check | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/util/dist-check b/util/dist-check index 5dec35d..4499e6f 100755 --- a/util/dist-check +++ b/util/dist-check @@ -33,14 +33,8 @@ if ($^O eq 'freebsd' || $^O eq 'solaris') { my $cfg_opts = ""; -if ($opts{l}) { - $lua = 'Lua'; - $cfg_opts .= " --with-lua51"; - -} else { - $lua = 'LuaJIT'; - #$cfg_opts .= " --with-luajit"; -} +$lua = 'LuaJIT'; +#$cfg_opts .= " --with-luajit"; if ($^O eq 'solaris') { $cfg_opts .= " --with-cc=gcc";