svn commit: r294874 - head/sys/conf

Bryan Drewery bdrewery at FreeBSD.org
Wed Jan 27 01:24:12 UTC 2016


Author: bdrewery
Date: Wed Jan 27 01:24:11 2016
New Revision: 294874
URL: https://svnweb.freebsd.org/changeset/base/294874

Log:
  FAST_DEPEND: Apply missed nofilemon fix from r294351.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/sys/conf/kern.post.mk

Modified: head/sys/conf/kern.post.mk
==============================================================================
--- head/sys/conf/kern.post.mk	Wed Jan 27 01:24:08 2016	(r294873)
+++ head/sys/conf/kern.post.mk	Wed Jan 27 01:24:11 2016	(r294874)
@@ -200,7 +200,8 @@ SRCS=	assym.s vnode_if.h ${BEFORE_DEPEND
 	${SYSTEM_CFILES} ${GEN_CFILES} ${SFILES} \
 	${MFILES:T:S/.m$/.h/}
 DEPENDFILES=	.depend
-.if ${MK_FAST_DEPEND} == "yes" && ${.MAKE.MODE:Unormal:Mmeta*} == ""
+.if ${MK_FAST_DEPEND} == "yes" && \
+    (${.MAKE.MODE:Unormal:Mmeta} == "" || ${.MAKE.MODE:Unormal:Mnofilemon} != "")
 DEPENDFILES+=	.depend.*
 DEPEND_CFLAGS+=	-MD -MP -MF.depend.${.TARGET}
 DEPEND_CFLAGS+=	-MT${.TARGET}


More information about the svn-src-head mailing list