From 18adb41cc4d910dfa89357be257542350684630b Mon Sep 17 00:00:00 2001 From: vasilito Date: Mon, 29 Jun 2026 08:58:22 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20ninja-build=20=E2=80=94=20add=20redox.pa?= =?UTF-8?q?tch=20to=20patches=20list?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Recipe had redox.patch (fork-based subprocess + getloadavg fallback) but wasn't declaring it in [source] patches, so cookbook never applied it. --- local/recipes/dev/ninja-build/recipe.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/local/recipes/dev/ninja-build/recipe.toml b/local/recipes/dev/ninja-build/recipe.toml index 979521c709..5204972539 100644 --- a/local/recipes/dev/ninja-build/recipe.toml +++ b/local/recipes/dev/ninja-build/recipe.toml @@ -1,6 +1,9 @@ [source] git = "https://github.com/ninja-build/ninja" rev = "v1.13.1" +patches = [ + "redox.patch", +] [build] template = "cmake"