svn commit: r304616 - head/share/mk

Ed Maste emaste at FreeBSD.org
Mon Aug 22 17:45:31 UTC 2016


Author: emaste
Date: Mon Aug 22 17:45:30 2016
New Revision: 304616
URL: https://svnweb.freebsd.org/changeset/base/304616

Log:
  Forcibly disable MK_TESTS if building without C++
  
  Several atf components require C++, and the test suite is not usable
  if building WITHOUT_CXX.
  
  Reviewed by:	bdrewery, jmmv
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D7597

Modified:
  head/share/mk/src.opts.mk

Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk	Mon Aug 22 17:37:31 2016	(r304615)
+++ head/share/mk/src.opts.mk	Mon Aug 22 17:45:30 2016	(r304616)
@@ -318,6 +318,7 @@ MK_KERBEROS:=	no
 MK_CLANG:=	no
 MK_GROFF:=	no
 MK_GNUCXX:=	no
+MK_TESTS:=	no
 .endif
 
 .if ${MK_MAIL} == "no"


More information about the svn-src-head mailing list