From f5ebed80aef88b1bd56d9e20247d7375ac4e6121 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sat, 27 Feb 2016 20:06:45 +0300 Subject: [PATCH] Fix cl build --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index e32356c..7717826 100755 --- a/hererocks.py +++ b/hererocks.py @@ -556,7 +556,7 @@ class RioLua(Lua): luac_objs += " print" + objext() if opts.target == "cl": - run_command("link /nologo /out:luac.exe", luac_objs, lib_objs) + run_command("link /nologo /out:luac.exe", luac_objs, *lib_objs) if os.path.exists("luac.exe.manifest"): run_command("mt /nologo -manifest luac.exe.manifest -outputresource:luac.exe")