summaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorAlex Richardson <arichardson@FreeBSD.org>2018-01-16 21:43:36 +0000
committerAlex Richardson <arichardson@FreeBSD.org>2018-01-16 21:43:36 +0000
commitebe45c64a040a2a5d21c3c78117cb35398c7029d (patch)
treeddbd01c4fd270a8857dbc5f5ed65d621957ee8ff /Makefile.inc1
parent5c050bc4fc3c9da0614704dda8d51001c7a8b8e6 (diff)
downloadsrc-test2-ebe45c64a040a2a5d21c3c78117cb35398c7029d.tar.gz
src-test2-ebe45c64a040a2a5d21c3c78117cb35398c7029d.zip
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
Notes
Notes: svn path=/head/; revision=328063
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc12
1 files changed, 1 insertions, 1 deletions
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