svn commit: r269842 - head/share/mk

Rui Paulo rpaulo at FreeBSD.org
Mon Aug 11 21:42:06 UTC 2014


Author: rpaulo
Date: Mon Aug 11 21:42:06 2014
New Revision: 269842
URL: http://svnweb.freebsd.org/changeset/base/269842

Log:
  Add .d files to the reverse matching pattern in bsd.dep.mk to account
  for source file dependencies.
  
  This follows the .y and .l behaviour.
  
  MFC after:	3 days

Modified:
  head/share/mk/bsd.dep.mk

Modified: head/share/mk/bsd.dep.mk
==============================================================================
--- head/share/mk/bsd.dep.mk	Mon Aug 11 21:38:41 2014	(r269841)
+++ head/share/mk/bsd.dep.mk	Mon Aug 11 21:42:06 2014	(r269842)
@@ -73,7 +73,7 @@ tags: ${SRCS}
 CLEANFILES?=
 
 .if !exists(${.OBJDIR}/${DEPENDFILE})
-.for _S in ${SRCS:N*.[hly]}
+.for _S in ${SRCS:N*.[dhly]}
 ${_S:R}.o: ${_S}
 .endfor
 .endif


More information about the svn-src-all mailing list