From: Gustavo Zacarias Date: Wed, 2 Dec 2015 20:48:13 +0000 (-0300) Subject: wireshark: forcibly disable lua X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=752ee252d0fe3205f937f87f19e70c6fffd1a0d5;p=buildroot.git 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 Reviewed-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- diff --git a/package/wireshark/wireshark.mk b/package/wireshark/wireshark.mk index 366134d563..867b945300 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))