svn commit: r294352 - head/sys/conf

Bryan Drewery bdrewery at FreeBSD.org
Tue Jan 19 22:42:02 UTC 2016


Author: bdrewery
Date: Tue Jan 19 22:42:01 2016
New Revision: 294352
URL: https://svnweb.freebsd.org/changeset/base/294352

Log:
  FAST_DEPEND: Add header dependency missed in r290629.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/sys/conf/kmod.mk

Modified: head/sys/conf/kmod.mk
==============================================================================
--- head/sys/conf/kmod.mk	Tue Jan 19 22:41:58 2016	(r294351)
+++ head/sys/conf/kmod.mk	Tue Jan 19 22:42:01 2016	(r294352)
@@ -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
 


More information about the svn-src-all mailing list