diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2010-05-27 14:35:34 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-06-05 21:37:36 +0200 |
commit | a0ce68d374734c6a7689eecc4b3f4cf6b32a95a2 (patch) | |
tree | 8abe2f77fc7fc0bae608ef5539368b5c70cd2e2c /package | |
parent | 3754c51560b5d250b7f0283d1291fea1ec25c55c (diff) | |
download | buildroot-novena-a0ce68d374734c6a7689eecc4b3f4cf6b32a95a2.tar.gz buildroot-novena-a0ce68d374734c6a7689eecc4b3f4cf6b32a95a2.zip |
iptables: bump version, make it smaller with IPV6=n
Closes #1879
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/iptables/iptables.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/iptables/iptables.mk b/package/iptables/iptables.mk index b74321cbf..3e847d2bd 100644 --- a/package/iptables/iptables.mk +++ b/package/iptables/iptables.mk @@ -3,7 +3,7 @@ # iptables # ############################################################# -IPTABLES_VERSION = 1.4.7 +IPTABLES_VERSION = 1.4.8 IPTABLES_SOURCE = iptables-$(IPTABLES_VERSION).tar.bz2 IPTABLES_SITE = http://ftp.netfilter.org/pub/iptables @@ -25,6 +25,8 @@ ifeq ($(BR2_INET_IPV6),y) ln -sf ip6tables-multi $(TARGET_DIR)/usr/sbin/ip6tables ln -sf ip6tables-multi $(TARGET_DIR)/usr/sbin/ip6tables-save ln -sf ip6tables-multi $(TARGET_DIR)/usr/sbin/ip6tables-restore +else + rm -f $(TARGET_DIR)/usr/lib/libip6tc.* endif touch $@ |