From 0f7b6cf83c868a009c9843522429ba6810990ae6 Mon Sep 17 00:00:00 2001 Message-ID: <0f7b6cf83c868a009c9843522429ba6810990ae6.1776707419.git.sam@gentoo.org> From: Sam James Date: Tue, 18 Nov 2025 18:10:03 +0000 Subject: [PATCH 1/2] rust: don't pass --quiet to cargo This obscures that cargo is being invoked at all and it means even ninja --verbose has no mention of it other than invoking the target. Signed-off-by: Sam James --- src/cargo-meson.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo-meson.sh b/src/cargo-meson.sh index 75f3cd1265..26a6d3bb16 100755 --- a/src/cargo-meson.sh +++ b/src/cargo-meson.sh @@ -31,7 +31,7 @@ case "$(cargo -vV | sed -n 's/^host: \(.*\)$/\1/p')" in LIBNAME=libgitcore.a;; esac -cargo build --lib --quiet --manifest-path="$SOURCE_DIR/Cargo.toml" --target-dir="$BUILD_DIR" "$@" +cargo build --lib --manifest-path="$SOURCE_DIR/Cargo.toml" --target-dir="$BUILD_DIR" "$@" RET=$? if test $RET -ne 0 then -- 2.53.0