From 9d7a27d8acd499c3d7c8d5b98539734c11ff5434 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 21 May 2026 16:48:10 +0900 Subject: 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 --- internal/rosa/cmake.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'internal/rosa/cmake.go') 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 { -- cgit v1.3.1