diff options
| author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-09-15 16:19:26 +0000 | 
|---|---|---|
| committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-09-15 16:19:26 +0000 | 
| commit | f4321239b73c0a59c0445f510edcdbca348b596d (patch) | |
| tree | 0e2ccbcbfba4cb162cf6cff04352080a7cc28a81 | |
| parent | 07a0857e26cd53b9a5ae970f9dc766cbf6b56625 (diff) | |
prevent include/netfilter.mk from being included multiple times
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8781 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -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 bbdf4b3e3..6f77f9670 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 | 
