svn commit: r344323 - projects/import-googletest-1.8.1/lib/googletest
Enji Cooper
ngie at FreeBSD.org
Wed Feb 20 00:15:26 UTC 2019
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>
More information about the svn-src-projects
mailing list