diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-21 16:48:10 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-21 16:48:10 +0900 |
| commit | 9d7a27d8acd499c3d7c8d5b98539734c11ff5434 (patch) | |
| tree | a79bea1872d5bfcb26a608f6c1dbbf156dc064ac /internal/rosa/cmake.go | |
| parent | 6546ddc64bcbf73c7419bac7af596b924005dbc3 (diff) | |
internal/rosa/package: migrate ninja
The ninja package predates all abstractions currently available. This migration causes rebuilds due to the old package being nonreproducible.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/cmake.go')
| -rw-r--r-- | internal/rosa/cmake.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/rosa/cmake.go b/internal/rosa/cmake.go index 10b2afc0..127423d1 100644 --- a/internal/rosa/cmake.go +++ b/internal/rosa/cmake.go @@ -6,7 +6,10 @@ import ( "strings" ) -var _cmake = H("cmake") +var ( + _cmake = H("cmake") + _ninja = H("ninja") +) // CMakeHelper is the [CMake] build system helper. type CMakeHelper struct { |
