diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2011-01-10 14:41:24 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-01-11 00:19:24 +0100 |
commit | bd5cbcb2b1702fff9983f101b9bc4c96bcedc389 (patch) | |
tree | 114eb9ef4bc688347bdcab3747a3a3f82d41a608 /package/iptables/iptables.mk | |
parent | f99f6aaa79918fe423e5b76f01f708fed2d93ced (diff) | |
download | buildroot-novena-bd5cbcb2b1702fff9983f101b9bc4c96bcedc389.tar.gz buildroot-novena-bd5cbcb2b1702fff9983f101b9bc4c96bcedc389.zip |
iptables: install to staging
Install iptables to staging so we can build iproute2 with filtering.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/iptables/iptables.mk')
-rw-r--r-- | package/iptables/iptables.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/iptables/iptables.mk b/package/iptables/iptables.mk index 1ec2c856c..b06ab71d9 100644 --- a/package/iptables/iptables.mk +++ b/package/iptables/iptables.mk @@ -3,9 +3,12 @@ # iptables # ############################################################# + IPTABLES_VERSION = 1.4.10 IPTABLES_SOURCE = iptables-$(IPTABLES_VERSION).tar.bz2 IPTABLES_SITE = http://ftp.netfilter.org/pub/iptables +IPTABLES_INSTALL_STAGING = YES +IPTABLES_AUTORECONF = YES IPTABLES_DEPENDENCIES = host-pkg-config IPTABLES_CONF_OPT = --libexecdir=/usr/lib --with-kernel=$(LINUX_HEADERS_DIR) @@ -13,8 +16,6 @@ ifneq ($(BR2_INET_IPV6),y) IPTABLES_CONF_OPT += --disable-ipv6 endif -IPTABLES_AUTORECONF = YES - define IPTABLES_TARGET_SYMLINK_CREATE ln -sf iptables-multi $(TARGET_DIR)/usr/sbin/iptables ln -sf iptables-multi $(TARGET_DIR)/usr/sbin/iptables-save |