git: ac2ebda1afd5 - stable/15 - packages/tests: Fix gtest dependency
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 30 Jul 2026 17:10:38 UTC
The branch stable/15 has been updated by ivy:
URL: https://cgit.FreeBSD.org/src/commit/?id=ac2ebda1afd5b17314cdd457812804a417ab0a49
commit ac2ebda1afd5b17314cdd457812804a417ab0a49
Author: Lexi Winter <ivy@FreeBSD.org>
AuthorDate: 2026-07-30 13:39:25 +0000
Commit: Lexi Winter <ivy@FreeBSD.org>
CommitDate: 2026-07-30 17:09:01 +0000
packages/tests: Fix gtest dependency
The MFC of 1d0ae66d3c21 (packages subdir build) added a dependency
from FreeBSD-tests on FreeBSD-googletest. However, the googletest
package doesn't exist in 15 because the relevant commit wasn't MFC'd.
This caused a broken and unresolvable dependency.
Replace the incorrect googletest dependency with a dependency on
utilities.
This is a direct commit to stable/15.
Fixes: 1d0ae66d3c21 ("packages: Convert world to a subdir build")
Reviewed by: cperciva
Reported by: Mark Millard <marklmi@yahoo.com>
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D58553
---
packages/tests/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/tests/Makefile b/packages/tests/Makefile
index da4038c4e045..9b06fa84d7c7 100644
--- a/packages/tests/Makefile
+++ b/packages/tests/Makefile
@@ -10,7 +10,7 @@ PKG_DEPS.tests+= atf
PKG_DEPS.tests+= flua
# Some tests need GoogleTest
-PKG_DEPS.tests+= googletest
+PKG_DEPS.tests+= utilities
# The test framework requires Kyua.
PKG_DEPS.tests+= kyua