From cbf18b302d51c3e667ebe06cfebb14b90ccc93b7 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 21 May 2026 15:35:48 +0900 Subject: internal/rosa/package: migrate nss Signed-off-by: Ophestra --- internal/rosa/cmake.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'internal/rosa/cmake.go') diff --git a/internal/rosa/cmake.go b/internal/rosa/cmake.go index bb488abd..cbce846e 100644 --- a/internal/rosa/cmake.go +++ b/internal/rosa/cmake.go @@ -6,8 +6,7 @@ import ( "strings" ) -// CMake is the package used by [CMakeHelper]. -var CMake = H("cmake") +var _cmake = H("cmake") // CMakeHelper is the [CMake] build system helper. type CMakeHelper struct { @@ -35,9 +34,9 @@ var _ Helper = new(CMakeHelper) // extra returns a hardcoded slice of [CMake] and [Ninja]. func (attr *CMakeHelper) extra(int) P { if attr != nil && attr.Make { - return P{CMake, Make} + return P{_cmake, _make} } - return P{CMake, Ninja} + return P{_cmake, _ninja} } // wantsChmod returns false. -- cgit v1.3.1