From 20cd7081e712011b05ad191c8163785142c75f97 Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sat, 27 Feb 2016 18:38:44 +0300 Subject: [PATCH] Don't ar rcu poor lua.o --- hererocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hererocks.py b/hererocks.py index c086cfa..95fc011 100755 --- a/hererocks.py +++ b/hererocks.py @@ -534,7 +534,7 @@ class RioLua(Lua): objs.append(obj) run_command(cc, static_cflags if obj in luac_objs else cflags, "-c -o", obj, src) - lib_objs = [obj_ for obj_ in objs if obj_ not in luac_objs and obj_ != "lua"] + lib_objs = [obj_ for obj_ in objs if obj_ not in luac_objs and obj_ != "lua.o"] run_command("ar rcu", self.arch_file, *lib_objs) run_command("ranlib", self.arch_file)