From fc7fc2443ee427cdefe8a4b18a4514b36a3cc8f7 Mon Sep 17 00:00:00 2001 From: nbd Date: Sun, 2 Apr 2006 21:59:18 +0000 Subject: [PATCH] map xt_ to ipt_ for iptables modules git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3586 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/iptables/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/iptables/Makefile b/package/iptables/Makefile index 38eb90718..298a9a9e0 100644 --- a/package/iptables/Makefile +++ b/package/iptables/Makefile @@ -21,7 +21,7 @@ define IPKG_plugin_template $$(IPKG_$(1)): install -m0755 -d $$(IDIR_$(1))/usr/lib/iptables - for m in $(2); do \ + for m in $$(patsubst xt_%,ipt_%,$(2)); do \ $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$${m}.so $$(IDIR_$(1))/usr/lib/iptables/ ; \ done @[ -z "$(3)" ] || $(MAKE) $(3) @@ -76,7 +76,7 @@ $(IPKG_IPTABLES): $(CP) $(PKG_INSTALL_DIR)/usr/sbin/iptables $(IDIR_IPTABLES)/usr/sbin/ install -d -m0755 $(IDIR_IPTABLES)/usr/lib/iptables (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \ - $(CP) $(patsubst %,lib%.so,$(IPT_BUILTIN)) $(IDIR_IPTABLES)/usr/lib/iptables/ \ + $(CP) $(patsubst %,lib%.so,$(IPT_BUILTIN:xt_%=ipt_%)) $(IDIR_IPTABLES)/usr/lib/iptables/ \ ) $(RSTRIP) $(IDIR_IPTABLES) $(IPKG_BUILD) $(IDIR_IPTABLES) $(PACKAGE_DIR) -- 2.20.1