aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorBrooks Davis <brooks@FreeBSD.org>2020-03-27 23:27:54 +0000
committerBrooks Davis <brooks@FreeBSD.org>2020-03-27 23:27:54 +0000
commitbe2af8fbf462565a163d434a51a94623b3333bec (patch)
tree58c583434773cc8b4e1abef49a07919bc018e769 /Makefile.inc1
parentc012cfe68a691bb509974d174ff6c2a8ac23c28a (diff)
downloadsrc-be2af8fbf462565a163d434a51a94623b3333bec.tar.gz
src-be2af8fbf462565a163d434a51a94623b3333bec.zip
Use the real value of MK_TESTS_SUPPORT in _libraries.
We need to build kyua libraries for kyua. Because we set MK_TESTS=no, we can't not set MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} because the latter defaults MK_TESTS_SUPPORT to no. This fixes WITHOUT_TESTS + WITH_TESTS_SUPPORT builds. Reported by: Ruslan Garipov Reviewed by: emaste Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D24206
Notes
Notes: svn path=/head/; revision=359382
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc13
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index a41d7391f49a..1a143481a0c4 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -1100,7 +1100,8 @@ _libraries:
@echo "--------------------------------------------------------------"
${_+_}cd ${.CURDIR}; \
${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \
- MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS} libraries
+ MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} \
+ libraries
everything: .PHONY
@echo
@echo "--------------------------------------------------------------"