diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-08-02 10:56:59 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-08-02 10:56:59 +0000 |
commit | 09f2ade6f1c521011c3287bf96ee11c463f39297 (patch) | |
tree | 3e0760eeb7454ccb7c8567319757b3134a6aa104 /sys/conf/Makefile.powerpc | |
parent | 78112d89854b6b9668fb096ce5eda367bd92d4f7 (diff) | |
download | FreeBSD-src-09f2ade6f1c521011c3287bf96ee11c463f39297.zip FreeBSD-src-09f2ade6f1c521011c3287bf96ee11c463f39297.tar.gz |
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
Diffstat (limited to 'sys/conf/Makefile.powerpc')
-rw-r--r-- | sys/conf/Makefile.powerpc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc index c7a1d84..9ca5d4b 100644 --- a/sys/conf/Makefile.powerpc +++ b/sys/conf/Makefile.powerpc @@ -275,6 +275,9 @@ MKMODULESENV= MAKEOBJDIRPREFIX=${.OBJDIR}/modules KMODDIR=${KODIR} .if defined(MODULES_OVERRIDE) MKMODULESENV+= MODULES_OVERRIDE="${MODULES_OVERRIDE}" .endif +.if defined(DEBUG) +MKMODULESENV+= DEBUG="${DEBUG}" DEBUG_FLAGS="${DEBUG}" +.endif modules: @mkdir -p ${.OBJDIR}/modules |