svn commit: r295899 - head/sys/conf

Bryan Drewery bdrewery at FreeBSD.org
Mon Feb 22 21:01:26 UTC 2016


Author: bdrewery
Date: Mon Feb 22 21:01:25 2016
New Revision: 295899
URL: https://svnweb.freebsd.org/changeset/base/295899

Log:
  Always remove .depend.* in case switching between FAST_DEPEND on/off.
  
  This was missed in r295666.
  
  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	Mon Feb 22 20:20:10 2016	(r295898)
+++ head/sys/conf/kern.post.mk	Mon Feb 22 21:01:25 2016	(r295899)
@@ -222,10 +222,9 @@ _MKDEPCC:= ${CC:N${CCACHE_BIN}}
 SRCS=	assym.s vnode_if.h ${BEFORE_DEPEND} ${CFILES} \
 	${SYSTEM_CFILES} ${GEN_CFILES} ${SFILES} \
 	${MFILES:T:S/.m$/.h/}
-DEPENDFILES=	.depend
+DEPENDFILES=	.depend .depend.*
 .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}
 .if defined(.PARSEDIR)


More information about the svn-src-head mailing list