diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-21 15:35:48 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-21 15:36:10 +0900 |
| commit | cbf18b302d51c3e667ebe06cfebb14b90ccc93b7 (patch) | |
| tree | c3ad2222ae0e28cf00f11d305a44b8fb900cbf6f /internal/rosa/cmake.go | |
| parent | 1acb5b010507dd2246b77b8c856612b86cb2eda4 (diff) | |
internal/rosa/package: migrate nss
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/cmake.go')
| -rw-r--r-- | internal/rosa/cmake.go | 7 |
1 files changed, 3 insertions, 4 deletions
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. |
