summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2015-12-02 17:48:13 -0300
committerPeter Korsgaard <peter@korsgaard.com>2015-12-03 22:34:04 +0100
commit752ee252d0fe3205f937f87f19e70c6fffd1a0d5 (patch)
treedc13ed7cc4c4f682c9e2cff6de32790ed60d0b38
parent0d879a268fd8ecddd096d45c1a741f5c91759ae9 (diff)
wireshark: forcibly disable lua
If host arch = target arch and liblua is in the host the buildsystem will pick it up and try to use it since it passes basic build tests. Forcibly disable it, since it causes no build failure, rather runtime failures because said liblua is not present on the target. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--package/wireshark/wireshark.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/package/wireshark/wireshark.mk b/package/wireshark/wireshark.mk
index 366134d56..867b94530 100644
--- a/package/wireshark/wireshark.mk
+++ b/package/wireshark/wireshark.mk
@@ -26,6 +26,7 @@ WIRESHARK_CONF_OPTS = \
--enable-static=no \
--with-gnutls=no \
--with-libsmi=no \
+ --with-lua=no \
--includedir=$(STAGING_DIR)/usr/include
$(eval $(autotools-package))