From: Chris Packham Date: Thu, 23 Jan 2014 09:07:14 +0000 (+1300) Subject: tcpreplay: cross-compile with tcpdump support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=340ba1bec04a87eae00b49098070d01e77457819;p=buildroot.git tcpreplay: cross-compile with tcpdump support If tcpdump is enabled set ac_cv_path_tcpdump_path so that verbose output is enabled on the target. Signed-off-by: Chris Packham Signed-off-by: Peter Korsgaard --- diff --git a/package/tcpreplay/tcpreplay.mk b/package/tcpreplay/tcpreplay.mk index 0939c6ce5b..a2cd16e396 100644 --- a/package/tcpreplay/tcpreplay.mk +++ b/package/tcpreplay/tcpreplay.mk @@ -18,4 +18,10 @@ TCPREPLAY_DEPENDENCIES = libpcap TCPREPLAY_LIBS = -lpcap $(if $(BR2_PACKAGE_LIBUSB),-lusb-1.0) TCPREPLAY_CONF_ENV += ac_cv_search_pcap_close='$(TCPREPLAY_LIBS)' +ifeq ($(BR2_PACKAGE_TCPDUMP),y) +TCPREPLAY_CONF_ENV += ac_cv_path_tcpdump_path=/usr/sbin/tcpdump +else +TCPREPLAY_CONF_ENV += ac_cv_path_tcpdump_path=no +endif + $(eval $(autotools-package))