svn commit: r320919 - head/sys/conf

Bryan Drewery bdrewery at FreeBSD.org
Wed Jul 12 19:01:27 UTC 2017


Author: bdrewery
Date: Wed Jul 12 19:01:25 2017
New Revision: 320919
URL: https://svnweb.freebsd.org/changeset/base/320919

Log:
  META_MODE: Fix not writing .meta files in the kernel build.
  
  This was a regression in r320220 due to improper porting of the
  same logic from share/mk/bsd.dep.mk and having only tested with
  -DNO_FILEMON at the time.
  
  Pointyhat to:	bdrewery
  Reported by:	Mark Millard, dhw, O. Hartmann
  Sponsored by:	Dell EMC Isilon

Modified:
  head/sys/conf/kern.post.mk

Modified: head/sys/conf/kern.post.mk
==============================================================================
--- head/sys/conf/kern.post.mk	Wed Jul 12 18:29:25 2017	(r320918)
+++ head/sys/conf/kern.post.mk	Wed Jul 12 19:01:25 2017	(r320919)
@@ -203,8 +203,7 @@ _meta_filemon=	1
 # for _meta_filemon but not for _SKIP_DEPEND.
 .if !empty(.MAKEFLAGS:M-V${_V_READ_DEPEND}) || make(*obj) || \
     ${.TARGETS:M*clean*} == ${.TARGETS} || \
-    ${.TARGETS:M*install*} == ${.TARGETS} || \
-    defined(_meta_filemon)
+    ${.TARGETS:M*install*} == ${.TARGETS}
 _SKIP_DEPEND=	1
 .endif
 .if defined(_SKIP_DEPEND) || defined(_meta_filemon)


More information about the svn-src-head mailing list