diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-09-15 16:19:26 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-09-15 16:19:26 +0000 |
commit | 5011d6129c138c5a2597357efe27ba5629058819 (patch) | |
tree | 09471dc8216bef73c96a18710326d28b6eeda387 /include | |
parent | 53a1d55b347258192dd8ae20337076ff669ed3cd (diff) | |
download | upstream-5011d6129c138c5a2597357efe27ba5629058819.tar.gz upstream-5011d6129c138c5a2597357efe27ba5629058819.tar.bz2 upstream-5011d6129c138c5a2597357efe27ba5629058819.zip |
prevent include/netfilter.mk from being included multiple times
SVN-Revision: 8781
Diffstat (limited to 'include')
-rw-r--r-- | include/netfilter.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/netfilter.mk b/include/netfilter.mk index bbdf4b3e3f..6f77f9670c 100644 --- a/include/netfilter.mk +++ b/include/netfilter.mk @@ -6,6 +6,9 @@ # # $Id: netfilter.mk 2411 2005-11-11 03:41:43Z nico $ +ifneq ($(__inc_netfiler),1) +__inc_netfiler:=1 + ifeq ($(NF_KMOD),1) P_V4:=ipv4/netfilter/ P_XT:=netfilter/ @@ -161,3 +164,5 @@ IPT_BUILTIN += $(IPT_IPSEC-y) IPT_BUILTIN += $(IPT_IPSET-y) IPT_BUILTIN += $(IPT_NAT-y) IPT_BUILTIN += $(IPT_ULOG-y) + +endif # __inc_netfiler |