From f82fc5684747338dbdb0071e9700d32d04ac1191 Mon Sep 17 00:00:00 2001 From: Eneas U de Queiroz Date: Fri, 28 Dec 2018 10:18:38 -0200 Subject: [PATCH] lualane: avoid luajit dependency Set LUA_LIBS=-llua manually to avoid picking up libluajit. Signed-off-by: Eneas U de Queiroz --- lang/lualanes/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lang/lualanes/Makefile b/lang/lualanes/Makefile index 79bbc14f5..b95b625f0 100644 --- a/lang/lualanes/Makefile +++ b/lang/lualanes/Makefile @@ -42,6 +42,8 @@ define Build/Compile CC="$(TARGET_CC)" \ LUA="$(STAGING_DIR_HOSTPKG)/bin/lua" \ LUAC="$(STAGING_DIR_HOSTPKG)/bin/luac" \ + LUA_FLAGS= \ + LUA_LIBS=-llua \ OPT_FLAGS="$(TARGET_CFLAGS) -Dpthread_yield=sched_yield" endef