Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Feb 2019 00:15:25 +0000 (UTC)
From:      Enji Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r344323 - projects/import-googletest-1.8.1/lib/googletest
Message-ID:  <201902200015.x1K0FPrM001469@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Wed Feb 20 00:15:25 2019
New Revision: 344323
URL: https://svnweb.freebsd.org/changeset/base/344323

Log:
  Unconditionally build/install libg{mock,test}_main
  
  They are supporting libraries and as such, will need to be built/installed
  when MK_TESTS == no during buildworld, i.e., the "make libraries" phase.
  
  Otherwise, dependent components cannot rely on the libraries, like
  `cddl/usr.sbin/zfsd/tests`.

Modified:
  projects/import-googletest-1.8.1/lib/googletest/Makefile

Modified: projects/import-googletest-1.8.1/lib/googletest/Makefile
==============================================================================
--- projects/import-googletest-1.8.1/lib/googletest/Makefile	Wed Feb 20 00:12:24 2019	(r344322)
+++ projects/import-googletest-1.8.1/lib/googletest/Makefile	Wed Feb 20 00:15:25 2019	(r344323)
@@ -3,8 +3,8 @@
 SUBDIR+=	gtest
 SUBDIR+=	.WAIT
 SUBDIR+=	gmock
-SUBDIR.${MK_TESTS}+=	.WAIT
-SUBDIR.${MK_TESTS}+=	gmock_main
-SUBDIR.${MK_TESTS}+=	gtest_main
+SUBDIR+=	.WAIT
+SUBDIR+=	gmock_main
+SUBDIR+=	gtest_main
 
 .include <bsd.subdir.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902200015.x1K0FPrM001469>