From: Baruch Siach Date: Sun, 17 Dec 2017 21:48:24 +0000 (+0200) Subject: iproute2: fix configure output file name X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f822cd793b07fff3db17b3898b858f003ead70d7;p=buildroot.git iproute2: fix configure output file name iproute2 renamed the configure script output file to config.mk. Update the config tweaking code accordingly. The configure script now detects xtables correctly, drop this part. Add a comment to explain the TC_CONFIG_XT disable tweak. Cc: Petr Vorel Signed-off-by: Baruch Siach Acked-by: Petr Vorel Signed-off-by: Thomas Petazzoni --- diff --git a/package/iproute2/iproute2.mk b/package/iproute2/iproute2.mk index c01917dffe..15bb132c50 100644 --- a/package/iproute2/iproute2.mk +++ b/package/iproute2/iproute2.mk @@ -31,9 +31,8 @@ define IPROUTE2_WITH_IPTABLES endef else define IPROUTE2_WITH_IPTABLES - # em_ipset needs xtables, but configure misdetects it - echo "TC_CONFIG_IPSET:=n" >>$(@D)/Config - echo "TC_CONFIG_XT:=n" >>$(@D)/Config + # m_xt.so is built unconditionally + echo "TC_CONFIG_XT:=n" >>$(@D)/config.mk endef endif