Add "-I${DESTDIR}/usr/include" to CFLAGS if DESTDIR is defined, just

like bsd.lib.mk and bsd.prog.mk.  It doesn't add it to CXXINCLUDES, I
don't think anybody has written a kernel module with C++.  (Not that I
think DavidG will allow it anyway. :)

Reviewed by:	bde
This commit is contained in:
asami 1997-06-18 03:10:31 +00:00
parent e981ebde8f
commit 562c018967
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# From: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
# $Id: bsd.kmod.mk,v 1.35 1997/04/30 21:54:01 fsmp Exp $
# $Id: bsd.kmod.mk,v 1.36 1997/05/06 14:29:56 dfr Exp $
#
# The include file <bsd.kmod.mk> handles installing Loadable Kernel Modules.
# <bsd.kmod.mk> includes the file named "../Makefile.inc" if it exists,
@ -112,6 +112,9 @@ ${SMPHDRS}:
#
CFLAGS+=${COPTS} -DKERNEL -DACTUALLY_LKM_NOT_KERNEL -I${.CURDIR}/../../sys \
${CWARNFLAGS}
.if defined(DESTDIR)
CFLAGS+= -I${DESTDIR}/usr/include
.endif
EXPORT_SYMS?= _${KMOD}

View File

@ -1,5 +1,5 @@
# From: @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
# $Id: bsd.kmod.mk,v 1.35 1997/04/30 21:54:01 fsmp Exp $
# $Id: bsd.kmod.mk,v 1.36 1997/05/06 14:29:56 dfr Exp $
#
# The include file <bsd.kmod.mk> handles installing Loadable Kernel Modules.
# <bsd.kmod.mk> includes the file named "../Makefile.inc" if it exists,
@ -112,6 +112,9 @@ ${SMPHDRS}:
#
CFLAGS+=${COPTS} -DKERNEL -DACTUALLY_LKM_NOT_KERNEL -I${.CURDIR}/../../sys \
${CWARNFLAGS}
.if defined(DESTDIR)
CFLAGS+= -I${DESTDIR}/usr/include
.endif
EXPORT_SYMS?= _${KMOD}