diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2018-07-19 20:07:38 +0300 |
---|---|---|
committer | Stijn Tintel <stijn@linux-ipv6.be> | 2018-11-13 11:45:13 +0200 |
commit | 76574f19e2c660f7a312e1e6d7fcd21daf3afb33 (patch) | |
tree | f5ae175dc4df4fba56c4a7201dd4979166972c1a /package/network | |
parent | 514ad059ef40b747c93c363403cb49b45dd86e41 (diff) | |
download | upstream-76574f19e2c660f7a312e1e6d7fcd21daf3afb33.tar.gz upstream-76574f19e2c660f7a312e1e6d7fcd21daf3afb33.tar.bz2 upstream-76574f19e2c660f7a312e1e6d7fcd21daf3afb33.zip |
tcpdump: explicitly disable libcap-ng support
If libcap-ng is detected during tcpdump build, support for it is
enabled and the binary is linked against it. Explicitly disable
libcap-ng support to avoid build failing due to a missing depndency.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/utils/tcpdump/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/network/utils/tcpdump/Makefile b/package/network/utils/tcpdump/Makefile index 50919819b6..712617fd25 100644 --- a/package/network/utils/tcpdump/Makefile +++ b/package/network/utils/tcpdump/Makefile @@ -47,6 +47,7 @@ define Package/tcpdump-mini endef CONFIGURE_ARGS += \ + --without-cap-ng \ --without-crypto ifeq ($(CONFIG_IPV6),y) |