From 875276d3f5086b123418326b91ea26ce27f9f488 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sat, 27 Feb 2016 18:44:13 +0300 Subject: [PATCH] Another build bites the dust --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index 95fc011..f2983e3 100755 --- a/hererocks.py +++ b/hererocks.py @@ -546,7 +546,7 @@ class RioLua(Lua): run_command(cc + " -shared -o", self.dll_file, *lib_objs) run_command("strip --strip-unneeded", self.dll_file) - run_command(cc, "-o -s", self.lua_file, "lua.o", self.dll_file) + run_command(cc, "-o", self.lua_file, "-s lua.o", self.dll_file) else: run_command(cc, "-o", self.lua_file, "lua.o", self.arch_file, lflags)