From c587233e709b426f50004d571f001ff060449117 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Sun, 8 Mar 2026 20:08:38 +0100 Subject: [PATCH] Avoid triggering a rebuild on `meson install` The package was just built, so there's no need to rebuild it right away. This change makes the `build` command slightly faster, and it avoids overwriting the generated `.ninja_log` file immediately after it's been generated during the build. --- spin/cmds/meson.py | 1 + 1 file changed, 1 insertion(+) diff --git a/spin/cmds/meson.py b/spin/cmds/meson.py index 4ecaee0..08a7cf3 100644 --- a/spin/cmds/meson.py +++ b/spin/cmds/meson.py @@ -417,6 +417,7 @@ def build( _meson_cli() + [ "install", + "--no-rebuild", "--only-changed", "-C", build_dir,