Iputils builds always all tools with the default env's in Makefile. We can't disable or enable this during compile time. So we need always these dependencies.
Signed-off-by: Alexander Aring <[email protected]> --- oops, sry about that! rules/iputils.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rules/iputils.in b/rules/iputils.in index ff8e2b3..855b918 100644 --- a/rules/iputils.in +++ b/rules/iputils.in @@ -3,10 +3,10 @@ menuconfig IPUTILS tristate prompt "iputils " - select LIBC_RESOLV if IPUTILS_PING6 - select LIBCAP if IPUTILS_ARPING || IPUTILS_PING || IPUTILS_PING6 || IPUTILS_TRACEROUTE6 - select GNUTLS if IPUTILS_PING6 - select GNUTLS_OPENSSL if IPUTILS_PING6 + select LIBC_RESOLV + select LIBCAP + select GNUTLS + select GNUTLS_OPENSSL help The iputils package is set of small useful utilities for Linux networking. -- 1.8.5.3 -- ptxdist mailing list [email protected]
