svn commit: r301940 - head

Bryan Drewery bdrewery at FreeBSD.org
Wed Jun 15 23:58:08 UTC 2016


Author: bdrewery
Date: Wed Jun 15 23:58:06 2016
New Revision: 301940
URL: https://svnweb.freebsd.org/changeset/base/301940

Log:
  WITH_META_MODE: Whitelist 'make kernel' and 'make world'.
  
  installkernel is technically META_MODE safe but doesn't need an explicit
  approval to use it since it's all disabled via .PHONY.
  
  world uses 'make -B installworld' which already will disable META_MODE
  via the -B (.MAKE.MODE=compat) usage.
  
  Approved by:	re (implicit)
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/Makefile

Modified: head/Makefile
==============================================================================
--- head/Makefile	Wed Jun 15 23:58:03 2016	(r301939)
+++ head/Makefile	Wed Jun 15 23:58:06 2016	(r301940)
@@ -150,9 +150,9 @@ TGTS+=	${BITGTS}
 # the ones that benefit from it.
 META_TGT_WHITELIST+= \
 	_* build32 buildfiles buildincludes buildkernel buildsoft \
-	buildworld everything kernel-toolchains kernels libraries \
+	buildworld everything kernel-toolchains kernel kernels libraries \
 	native-xtools showconfig tinderbox toolchain toolchains universe \
-	worlds xdev xdev-build
+	world worlds xdev xdev-build
 
 .ORDER: buildworld installworld
 .ORDER: buildworld distributeworld


More information about the svn-src-all mailing list