diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-03-21 09:15:39 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-03-21 09:15:39 +0000 |
commit | 7a43a96ab0f7805f65711627ed9b8fae71ef2787 (patch) | |
tree | 2a46595d7dbcf62515f44f58ae1d572ede6a2581 /sys/modules | |
parent | 6a1bd01754a8b0836ba4aaa0c246ec1fa8bee31f (diff) | |
download | src-7a43a96ab0f7805f65711627ed9b8fae71ef2787.tar.gz src-7a43a96ab0f7805f65711627ed9b8fae71ef2787.zip |
Replaced hacks in sbin/Makefile,v 1.99 and usr.sbin/Makefile,v 1.217
with the NO_IPFILTER make.conf(5) knob.
(So that we can "make the-rest-of-the-world" again.)
Notes
Notes:
svn path=/head/; revision=92868
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index c186d52b507c..54a6e8370bfb 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -41,7 +41,6 @@ SUBDIR= 3dfx \ if_vlan \ ip6fw \ ip_mroute_mod \ - ipfilter \ ipfw \ ispfw \ joy \ @@ -114,6 +113,10 @@ SUBDIR= 3dfx \ wb \ xl +.if !defined(NO_IPFILTER) +SUBDIR+=ipfilter +.endif + #removed while KSE settles in: # ncp \ # nwfs \ |