From ebe45c64a040a2a5d21c3c78117cb35398c7029d Mon Sep 17 00:00:00 2001 From: Alex Richardson Date: Tue, 16 Jan 2018 21:43:36 +0000 Subject: [PATCH] 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 --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 54c2c2d03bc5..92d89e1f77a8 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -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