summaryrefslogtreecommitdiffstats
path: root/sys/modules/ar
diff options
context:
space:
mode:
authoryar <yar@FreeBSD.org>2005-10-14 23:30:17 +0000
committeryar <yar@FreeBSD.org>2005-10-14 23:30:17 +0000
commit024c6e0e38a1f518d45e5d95d0d37098e7590c5f (patch)
tree40653d874a438a3202bb62dd66566bfd5b1386c1 /sys/modules/ar
parent924e74a7598e3d599ae2d95a728fc373ef8582ed (diff)
downloadFreeBSD-src-024c6e0e38a1f518d45e5d95d0d37098e7590c5f.zip
FreeBSD-src-024c6e0e38a1f518d45e5d95d0d37098e7590c5f.tar.gz
Let modules use the kernel's opt_*.h files if built along with
the kernel by wrapping all targets for fake opt_*.h files in .if defined(KERNBUILDDIR). Thus, such fake files won't be created at all if modules are built with the kernel. Some modules undergo cleanup like removing unused or unneeded options or .h files, without which they wouldn't build this way or the other. Reviewed by: ru Tested by: no binary changes in modules built alone Tested on: i386 sparc64 amd64
Diffstat (limited to 'sys/modules/ar')
-rw-r--r--sys/modules/ar/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/ar/Makefile b/sys/modules/ar/Makefile
index fae9452..78fe22e 100644
--- a/sys/modules/ar/Makefile
+++ b/sys/modules/ar/Makefile
@@ -5,13 +5,13 @@ KMOD = if_ar
SRCS = if_ar.c if_ar_isa.c if_ar_pci.c
SRCS += device_if.h bus_if.h pci_if.h isa_if.h opt_netgraph.h
+.if !defined(KERNBUILDDIR)
NETGRAPH?= 0
-opt_netgraph.h:
.if ${NETGRAPH} != 0
+opt_netgraph.h:
echo "#define NETGRAPH ${NETGRAPH}" > opt_netgraph.h
-.else
- echo "" > opt_netgraph.h
+.endif
.endif
.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud