svn commit: r316789 - stable/11/sys/conf

Bryan Drewery bdrewery at FreeBSD.org
Thu Apr 13 20:35:34 UTC 2017


Author: bdrewery
Date: Thu Apr 13 20:35:33 2017
New Revision: 316789
URL: https://svnweb.freebsd.org/changeset/base/316789

Log:
  MFC r315459:
  
    kmod: Fix depending on ILINKS for tracked DEPENDOBJS.

Modified:
  stable/11/sys/conf/kmod.mk
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/conf/kmod.mk
==============================================================================
--- stable/11/sys/conf/kmod.mk	Thu Apr 13 20:34:52 2017	(r316788)
+++ stable/11/sys/conf/kmod.mk	Thu Apr 13 20:35:33 2017	(r316789)
@@ -274,7 +274,7 @@ beforebuild: ${_ILINKS}
 # causes all the modules to be rebuilt when the directory pointed to changes.
 .for _link in ${_ILINKS}
 .if !exists(${.OBJDIR}/${_link})
-${OBJS}: ${_link}
+OBJS_DEPEND_GUESS+=	${_link}
 .endif
 .endfor
 


More information about the svn-src-all mailing list