diff options
| author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-04-02 21:59:18 +0000 | 
|---|---|---|
| committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-04-02 21:59:18 +0000 | 
| commit | fc7fc2443ee427cdefe8a4b18a4514b36a3cc8f7 (patch) | |
| tree | 369847b85686d2ff87ae6cbd17059c4e509f0dff | |
| parent | 886fb49a04f222df2e0145906d24af57d2958780 (diff) | |
map xt_ to ipt_ for iptables modules
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3586 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | package/iptables/Makefile | 4 | 
1 files 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) | 
