From: Eneas U de Queiroz Date: Fri, 28 Dec 2018 12:18:38 +0000 (-0200) Subject: lualane: avoid luajit dependency X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=f82fc5684747338dbdb0071e9700d32d04ac1191;p=feed%2Fpackages.git lualane: avoid luajit dependency Set LUA_LIBS=-llua manually to avoid picking up libluajit. Signed-off-by: Eneas U de Queiroz --- diff --git a/lang/lualanes/Makefile b/lang/lualanes/Makefile index 79bbc14f5c..b95b625f00 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