svn commit: r359382 - head

Brooks Davis brooks at FreeBSD.org
Fri Mar 27 23:28:04 UTC 2020


Author: brooks
Date: Fri Mar 27 23:27:54 2020
New Revision: 359382
URL: https://svnweb.freebsd.org/changeset/base/359382

Log:
  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

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Fri Mar 27 23:10:18 2020	(r359381)
+++ head/Makefile.inc1	Fri Mar 27 23:27:54 2020	(r359382)
@@ -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 "--------------------------------------------------------------"


More information about the svn-src-all mailing list