aboutsummaryrefslogtreecommitdiff
path: root/binary
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2019-08-28 13:46:16 -0300
committerHisham Muhammad <hisham@gobolinux.org>2019-08-28 13:46:16 -0300
commit47e0f2f0730ccc7cbd6e15d6920cc023996a088b (patch)
treebfdf908480045738a36407f213247767582a189f /binary
parent8a46d50ea40f97b0f50bba06d8c0bf3b8721b013 (diff)
downloadluarocks-47e0f2f0730ccc7cbd6e15d6920cc023996a088b.tar.gz
luarocks-47e0f2f0730ccc7cbd6e15d6920cc023996a088b.tar.bz2
luarocks-47e0f2f0730ccc7cbd6e15d6920cc023996a088b.zip
binary: fix check_lua_* calls
Diffstat (limited to 'binary')
-rwxr-xr-xbinary/all_in_one3
1 files changed, 2 insertions, 1 deletions
diff --git a/binary/all_in_one b/binary/all_in_one
index afc5f8dc..4fa0ba76 100755
--- a/binary/all_in_one
+++ b/binary/all_in_one
@@ -405,7 +405,8 @@ local function generate(main_program, dir, skip)
405 fd:write(reindent_c(table.concat(out, "\n"))) 405 fd:write(reindent_c(table.concat(out, "\n")))
406 fd:close() 406 fd:close()
407 407
408 deps.check_lua(cfg.variables) 408 deps.check_lua_incdir(cfg.variables)
409 deps.check_lua_libdir(cfg.variables)
409 410
410 cmd = table.concat(filter_in(nonnull, { 411 cmd = table.concat(filter_in(nonnull, {
411 CC, "-o", TARGET .. "/" .. program_name .. ".exe", 412 CC, "-o", TARGET .. "/" .. program_name .. ".exe",