From 9543d1d1b7694afb3dd0934b5c4a6405c6ba6086 Mon Sep 17 00:00:00 2001 From: Kevin Darbyshire-Bryant Date: Tue, 21 May 2019 12:55:00 +0100 Subject: [PATCH] luajit: permit building on macos host luajit didn't understand completely that it was building in a cross compiled environment for Linux target. This would cause issues when building under openwrt on macos. Signed-off-by: Kevin Darbyshire-Bryant --- lang/luajit/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lang/luajit/Makefile b/lang/luajit/Makefile index e1f2a7477..72073dd7a 100644 --- a/lang/luajit/Makefile +++ b/lang/luajit/Makefile @@ -43,12 +43,14 @@ define Build/Compile CROSS="$(TARGET_CROSS)" \ DPREFIX=$(PKG_INSTALL_DIR)/usr \ PREFIX=/usr \ + TARGET_SYS=Linux \ TARGET_CFLAGS="$(TARGET_CFLAGS)" rm -rf $(PKG_INSTALL_DIR) mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ DPREFIX=$(PKG_INSTALL_DIR)/usr \ PREFIX=/usr \ + TARGET_SYS=Linux \ install endef