diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2016-01-19 22:42:01 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2016-01-19 22:42:01 +0000 |
commit | d0d3ff23f72291b0f414c1d2fa10882c6bb47e50 (patch) | |
tree | 1eace14bedaf307e5d2c07f9aa5c1d96f3545126 /sys/conf/kmod.mk | |
parent | d3b887fd0d2247af0971c7e59828763383a6a1d2 (diff) | |
download | src-d0d3ff23f72291b0f414c1d2fa10882c6bb47e50.tar.gz src-d0d3ff23f72291b0f414c1d2fa10882c6bb47e50.zip |
FAST_DEPEND: Add header dependency missed in r290629.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=294352
Diffstat (limited to 'sys/conf/kmod.mk')
-rw-r--r-- | sys/conf/kmod.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/conf/kmod.mk b/sys/conf/kmod.mk index 819a955fe692..77c893c8c60e 100644 --- a/sys/conf/kmod.mk +++ b/sys/conf/kmod.mk @@ -456,7 +456,7 @@ cleandepend: cleanilinks cleanilinks: rm -f ${_ILINKS} -.if !exists(${.OBJDIR}/${DEPENDFILE}) +.if ${MK_FAST_DEPEND} == "yes" || !exists(${.OBJDIR}/${DEPENDFILE}) ${OBJS}: ${SRCS:M*.h} .endif |