diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-30 18:42:02 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-30 18:42:02 +0000 |
commit | 3c154928410dba2c77cfe58b84a4899b621bc9a2 (patch) | |
tree | c0533420466f7c4cfef4f9ca07830d7db75e339a /package/iptables/iptables.mk | |
parent | 6cd7c8332e5884a143028acc7a006cc65b0322cd (diff) | |
download | buildroot-novena-3c154928410dba2c77cfe58b84a4899b621bc9a2.tar.gz buildroot-novena-3c154928410dba2c77cfe58b84a4899b621bc9a2.zip |
iptables: use correct variable for configure options
Introduced in r23409.
Diffstat (limited to 'package/iptables/iptables.mk')
-rw-r--r-- | package/iptables/iptables.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/iptables/iptables.mk b/package/iptables/iptables.mk index 21ea5be13..f18dd9e9f 100644 --- a/package/iptables/iptables.mk +++ b/package/iptables/iptables.mk @@ -7,7 +7,7 @@ IPTABLES_VERSION = 1.4.2 IPTABLES_SOURCE = iptables-$(IPTABLES_VERSION).tar.bz2 IPTABLES_SITE = http://ftp.netfilter.org/pub/iptables -IPTABLES_CONF_OPT = --libexecdir=/usr/lib +IPTABLES_CONF_OPT = --libexecdir=/usr/lib --with-kernel=$(LINUX_HEADERS_DIR) ifneq ($(BR2_INET_IPV6),y) IPTABLES_CONF_OPT += --enable-ipv6=no endif @@ -16,7 +16,6 @@ IPTABLES_INSTALL_TARGET = YES IPTABLES_AUTORECONF = YES IPTABLES_DEPENDENCIES = -IPTABLES_CONFIGURE_OPT = --with-kernel=$(LINUX_HEADERS_DIR) $(eval $(call AUTOTARGETS,package,iptables)) |