40 lines
1.1 KiB
Diff
40 lines
1.1 KiB
Diff
From 52953ab99c727a19e88243dda2702d6814f7974d Mon Sep 17 00:00:00 2001
|
|
From: Mingli Yu <mingli.yu@windriver.com>
|
|
Date: Wed, 4 Nov 2020 08:55:10 +0000
|
|
Subject: [PATCH] Makefile.in: don't use the internal lua
|
|
|
|
ntopng depends on lua and it will compile the lua under
|
|
third-party sub dir of source tree, but this one supports
|
|
cross-compiling badly, so use the one under RECIPE_SYSROOT.
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
|
|
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
|
|
---
|
|
Makefile.in | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
diff --git a/Makefile.in b/Makefile.in
|
|
index d737e74..a611b16 100755
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -36,7 +36,6 @@ MONGOOSE_INC=-I$(MONGOOSE_HOME)
|
|
LUA_PLATFORM=generic
|
|
LUA_HOME=${PWD}/third-party/lua-5.4.3
|
|
LUA_INC=-I$(LUA_HOME)/src
|
|
-LUA_LIB=$(LUA_HOME)/src/liblua.a
|
|
|
|
ifeq ($(OS),Linux)
|
|
LUA_PLATFORM=linux
|
|
@@ -102,7 +101,6 @@ RPM_PKG = $(TARGET)-$(NTOPNG_VERSION)-@REVISION@.$(PLATFORM).rpm
|
|
RPM_DATA_PKG = $(TARGET)-data-$(NTOPNG_VERSION)-@REVISION@.noarch.rpm
|
|
######
|
|
|
|
-LIB_TARGETS = $(LUA_LIB)
|
|
|
|
ifneq ($(HAS_ZEROMQ), 0)
|
|
LIB_TARGETS += $(ZEROMQ_LIB)
|
|
--
|
|
2.25.1
|
|
|