1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Always build all modules for LINT

This commit is contained in:
Poul-Henning Kamp 2002-02-17 21:00:20 +00:00
parent 96c066cc83
commit 5a7ed3fb13
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90789
2 changed files with 4 additions and 1 deletions

View File

@ -86,6 +86,9 @@ SYSTEM_DEP+= $S/conf/ldscript.$M
# them.
MKMODULESENV= MAKEOBJDIRPREFIX=${.OBJDIR}/modules KMODDIR=${KODIR}
.if (${KERN_IDENT} == LINT)
MKMODULESENV+= ALL_MODULES=LINT
.endif
.if defined(MODULES_OVERRIDE)
MKMODULESENV+= MODULES_OVERRIDE="${MODULES_OVERRIDE}"
.endif

View File

@ -168,7 +168,7 @@ SUBDIR+=linux \
SUBDIR+=ext2fs
.endif
.if defined(MODULES_OVERRIDE)
.if defined(MODULES_OVERRIDE) && !defined(ALL_MODULES)
SUBDIR=${MODULES_OVERRIDE}
.endif