diff options
author | Steven Barth <cyrus@openwrt.org> | 2013-03-07 08:48:41 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2013-03-07 08:48:41 +0000 |
commit | 62ea398cd8120a0580660fcb6a980dce2bca86f0 (patch) | |
tree | 013873e933def12f55eba4de39654fa67e0b1fe2 /package/network | |
parent | 9779b0b88c0efefa7fffb5fa86c708349c883c8d (diff) | |
download | upstream-62ea398cd8120a0580660fcb6a980dce2bca86f0.tar.gz upstream-62ea398cd8120a0580660fcb6a980dce2bca86f0.tar.bz2 upstream-62ea398cd8120a0580660fcb6a980dce2bca86f0.zip |
iptables: Add missing IPv6 builtin modules
SVN-Revision: 35898
Diffstat (limited to 'package/network')
-rw-r--r-- | package/network/utils/iptables/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/network/utils/iptables/Makefile b/package/network/utils/iptables/Makefile index 22fd944662..9d695c670b 100644 --- a/package/network/utils/iptables/Makefile +++ b/package/network/utils/iptables/Makefile @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=iptables PKG_VERSION:=1.4.18 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://www.netfilter.org/projects/iptables/files \ @@ -357,7 +357,7 @@ MAKE_FLAGS := \ COPT_FLAGS="$(TARGET_CFLAGS)" \ KERNEL_DIR="$(LINUX_DIR)/user_headers/" PREFIX=/usr \ KBUILD_OUTPUT="$(LINUX_DIR)" \ - BUILTIN_MODULES="$(patsubst ipt_%,%,$(patsubst xt_%,%,$(IPT_BUILTIN) $(IPT_CONNTRACK-m) $(IPT_NAT-m)))" + BUILTIN_MODULES="$(patsubst ip6t_%,%,$(patsubst ipt_%,%,$(patsubst xt_%,%,$(IPT_BUILTIN) $(IPT_CONNTRACK-m) $(IPT_NAT-m))))" define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include @@ -415,7 +415,7 @@ endef define BuildPlugin define Package/$(1)/install $(INSTALL_DIR) $$(1)/usr/lib/iptables - for m in $(patsubst xt_%,ipt_%,$(2)) $(patsubst ipt_%,xt_%,$(2)); do \ + for m in $(patsubst xt_%,ipt_%,$(2)) $(patsubst ipt_%,xt_%,$(2)) $(patsubst xt_%,ip6t_%,$(2)) $(patsubst ip6t_%,xt_%,$(2)); do \ if [ -f $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so ]; then \ $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so $$(1)/usr/lib/iptables/ ; \ fi; \ |