svn commit: r319187 - stable/11/share/mk

Ngie Cooper ngie at FreeBSD.org
Tue May 30 04:31:36 UTC 2017


Author: ngie
Date: Tue May 30 04:31:35 2017
New Revision: 319187
URL: https://svnweb.freebsd.org/changeset/base/319187

Log:
  MFC r307741:
  r307741 (by emaste):
  
  Allow all subdirectories to be optional via SUBDIR.${MK_*}
  
  Tested by:	br
  Pointy hat to:	emaste

Modified:
  stable/11/share/mk/bsd.subdir.mk
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/share/mk/bsd.subdir.mk
==============================================================================
--- stable/11/share/mk/bsd.subdir.mk	Tue May 30 04:27:05 2017	(r319186)
+++ stable/11/share/mk/bsd.subdir.mk	Tue May 30 04:31:35 2017	(r319187)
@@ -113,7 +113,7 @@ install:	beforeinstall realinstall afterinstall
 # 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