svn commit: r319861 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Mon Jun 12 18:44:15 UTC 2017


Author: bdrewery
Date: Mon Jun 12 18:44:14 2017
New Revision: 319861
URL: https://svnweb.freebsd.org/changeset/base/319861

Log:
  META_MODE: NO_FILEMON should imply nofilemon.
  
  This fixes NO_FILEMON to properly still use .depend.OBJ files
  for dependency tracking.
  
  MFC after:	1 week
  Sponsored by:	Dell EMC Isilon

Modified:
  head/share/mk/sys.mk

Modified: head/share/mk/sys.mk
==============================================================================
--- head/share/mk/sys.mk	Mon Jun 12 17:37:18 2017	(r319860)
+++ head/share/mk/sys.mk	Mon Jun 12 18:44:14 2017	(r319861)
@@ -59,7 +59,7 @@ META_MODE+=	missing-meta=yes
 .if !defined(NO_SILENT)
 META_MODE+=	silent=yes
 .endif
-.if !exists(/dev/filemon)
+.if !exists(/dev/filemon) || defined(NO_FILEMON)
 META_MODE+= nofilemon
 .endif
 # Require filemon data with bmake


More information about the svn-src-all mailing list