svn commit: r328063 - head

Alex Richardson arichardson at FreeBSD.org
Tue Jan 16 21:43:38 UTC 2018


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
 


More information about the svn-src-head mailing list