diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-08-02 10:56:59 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-08-02 10:56:59 +0000 |
commit | 2cc33d79460c4981d5d7f326110c56173b69493e (patch) | |
tree | 3e0760eeb7454ccb7c8567319757b3134a6aa104 /sys/conf/Makefile.pc98 | |
parent | f5974d336f4cb6b5d1cf51b8e213f06244817151 (diff) |
When building a debugging kernel with modules, build modules with
debugging support as well.
This relies on support added in rev 1.105 to kmod.mk.
Requested by: peter
Notes
Notes:
svn path=/head/; revision=81037
Diffstat (limited to 'sys/conf/Makefile.pc98')
-rw-r--r-- | sys/conf/Makefile.pc98 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/conf/Makefile.pc98 b/sys/conf/Makefile.pc98 index 47b9f3ceb3a1..be84449db36f 100644 --- a/sys/conf/Makefile.pc98 +++ b/sys/conf/Makefile.pc98 @@ -270,6 +270,9 @@ install.debug: modules-install.debug reinstall: modules-reinstall reinstall.debug: modules-reinstall.debug .endif +.if defined(DEBUG) +MKMODULESENV+= DEBUG="${DEBUG}" DEBUG_FLAGS="${DEBUG}" +.endif MKMODULESENV= MAKEOBJDIRPREFIX=${.OBJDIR}/modules KMODDIR=${KODIR} .if defined(MODULES_OVERRIDE) |