diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-10-02 09:38:17 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-10-02 09:38:17 +0000 |
commit | 42239faa4747820b5263ce6a3de8ff7bd2106fe9 (patch) | |
tree | 147a250b6d2a12f6aa3097040f229127f89bb6a9 /sys/modules/if_gre | |
parent | feb8c6a405493202efe2d6743b8bb785cf9ce590 (diff) | |
download | FreeBSD-src-42239faa4747820b5263ce6a3de8ff7bd2106fe9.zip FreeBSD-src-42239faa4747820b5263ce6a3de8ff7bd2106fe9.tar.gz |
Since bpf is no longer an optional component, remove associated ifdef's.
Submitted by: don't quite remember - the name of the sender disappeared
with the rest of my inbox. :(
Diffstat (limited to 'sys/modules/if_gre')
-rw-r--r-- | sys/modules/if_gre/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/modules/if_gre/Makefile b/sys/modules/if_gre/Makefile index 5ef40ca..9079ef9 100644 --- a/sys/modules/if_gre/Makefile +++ b/sys/modules/if_gre/Makefile @@ -3,9 +3,7 @@ .PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet KMOD= if_gre -SRCS= if_gre.c ip_gre.c opt_inet.h opt_ns.h opt_atalk.h bpf.h - -CLEANFILES+=bpf.h +SRCS= if_gre.c ip_gre.c opt_inet.h opt_ns.h opt_atalk.h opt_inet.h: echo "#define INET 1" > ${.TARGET} @@ -16,7 +14,4 @@ opt_ns.h: opt_atalk.h: echo "#define NETATALK 1" > ${.TARGET} -bpf.h: - echo "#define NBPF 1" > ${.TARGET} - .include <bsd.kmod.mk> |