Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Jun 2016 23:58:06 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r301940 - head
Message-ID:  <201606152358.u5FNw6o3075878@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606152358.u5FNw6o3075878>