Fix cl build

This commit is contained in:
mpeterv 2016-02-27 20:06:45 +03:00
parent 9c0b3c64ac
commit f5ebed80ae

View File

@ -556,7 +556,7 @@ class RioLua(Lua):
luac_objs += " print" + objext() luac_objs += " print" + objext()
if opts.target == "cl": 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"): if os.path.exists("luac.exe.manifest"):
run_command("mt /nologo -manifest luac.exe.manifest -outputresource:luac.exe") run_command("mt /nologo -manifest luac.exe.manifest -outputresource:luac.exe")