Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Jan 2018 21:43:36 +0000 (UTC)
From:      Alex Richardson <arichardson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r328063 - head
Message-ID:  <201801162143.w0GLhaDt086171@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arichardson
Date: Tue Jan 16 21:43:36 2018
New Revision: 328063
URL: https://svnweb.freebsd.org/changeset/base/328063

Log:
  Don't build share/syscons in build-tools stage if MK_SYSCONS == "no"
  
  Reviewed By:	emaste, jhb
  Approved By:	jhb (mentor)
  Differential Revision: https://reviews.freebsd.org/D12926

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Tue Jan 16 21:43:21 2018	(r328062)
+++ head/Makefile.inc1	Tue Jan 16 21:43:36 2018	(r328063)
@@ -1976,7 +1976,7 @@ bootstrap-tools: ${_bt}-${_tool}
 #
 # build-tools: Build special purpose build tools
 #
-.if !defined(NO_SHARE)
+.if !defined(NO_SHARE) && ${MK_SYSCONS} != "no"
 _share=	share/syscons/scrnmaps
 .endif
 



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