diff options
author | John Crispin <john@openwrt.org> | 2014-06-02 12:43:25 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-06-02 12:43:25 +0000 |
commit | af4769e298df53985ea790745ba0a129d36d8136 (patch) | |
tree | 83d7eba60c36dda66fceafd953a94509bff0b4ca /package/network/utils | |
parent | f933a741a9c44cea58b2b3837dca99fc55d0b957 (diff) | |
download | upstream-af4769e298df53985ea790745ba0a129d36d8136.tar.gz upstream-af4769e298df53985ea790745ba0a129d36d8136.tar.bz2 upstream-af4769e298df53985ea790745ba0a129d36d8136.zip |
iptables: Makefile: only build ip6tc, if IPv6 is enabled
when disabling ipv6, the iptables build breaks without a manul clean or this patch
Signed-off-by: Bastian Bittorf <bittorf@bluebottle.com>
SVN-Revision: 40916
Diffstat (limited to 'package/network/utils')
-rw-r--r-- | package/network/utils/iptables/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/utils/iptables/Makefile b/package/network/utils/iptables/Makefile index fd8477252f..48b1879bd3 100644 --- a/package/network/utils/iptables/Makefile +++ b/package/network/utils/iptables/Makefile @@ -316,7 +316,7 @@ define Package/libiptc $(call Package/iptables/Default) SECTION:=libs CATEGORY:=Libraries - DEPENDS:=+libip4tc +libip6tc + DEPENDS:=+libip4tc +IPV6:libip6tc TITLE:=IPv4/IPv6 firewall - shared libiptc library (compatibility stub) endef |