Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Oct 2016 17:25:19 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r307741 - head/share/mk
Message-ID:  <201610211725.u9LHPJSR087069@repo.freebsd.org>

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



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