svn commit: r307741 - head/share/mk

Ed Maste emaste at FreeBSD.org
Fri Oct 21 17:25:20 UTC 2016


Author: emaste
Date: Fri Oct 21 17:25:19 2016
New Revision: 307741
URL: https://svnweb.freebsd.org/changeset/base/307741

Log:
  Allow all subdirectories to be optional via SUBDIR.${MK_*}
  
  Reviewed by:	br, imp
  Tested by:	br
  Pointy hat to:	emaste
  Differential Revision:	https://reviews.freebsd.org/D8317

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

Modified: head/share/mk/bsd.subdir.mk
==============================================================================
--- head/share/mk/bsd.subdir.mk	Fri Oct 21 16:47:02 2016	(r307740)
+++ head/share/mk/bsd.subdir.mk	Fri Oct 21 17:25:19 2016	(r307741)
@@ -110,7 +110,7 @@ install:	beforeinstall realinstall after
 # SUBDIR recursing may be disabled for MK_DIRDEPS_BUILD
 .if !target(_SUBDIR)
 
-.if defined(SUBDIR)
+.if defined(SUBDIR) || defined(SUBDIR.yes)
 SUBDIR:=${SUBDIR} ${SUBDIR.yes}
 SUBDIR:=${SUBDIR:u}
 .endif


More information about the svn-src-all mailing list