From 2d86083fd47011d024c55d15cbaebc089aa23308 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Thu, 11 Jun 2026 10:16:49 +0100 Subject: [PATCH] guix: Drop redundant CMake `--verbose` options CMake's verbose output is already controlled by the `VERBOSE` environment variable, which has been exported since commit 85f4a4b0822e. --- contrib/guix/libexec/build.sh | 8 ++++---- contrib/guix/libexec/package.sh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/guix/libexec/build.sh b/contrib/guix/libexec/build.sh index 000b490147e..0bc3888ac0a 100755 --- a/contrib/guix/libexec/build.sh +++ b/contrib/guix/libexec/build.sh @@ -169,14 +169,14 @@ mkdir -p "$DISTSRC" "${CMAKE_EXE_LINKER_FLAGS}" # Build Bitcoin Core - cmake --build build -j "$JOBS" ${V:+--verbose} + cmake --build build -j "$JOBS" mkdir -p "$OUTDIR" # Make the os-specific installers case "$HOST" in *mingw*) - cmake --build build -j "$JOBS" -t deploy ${V:+--verbose} + cmake --build build -j "$JOBS" -t deploy mv build/bitcoin-win64-setup.exe "${OUTDIR}/${DISTNAME}-win64-setup-unsigned.exe" ;; esac @@ -188,10 +188,10 @@ mkdir -p "$DISTSRC" # Install built Bitcoin Core to $INSTALLPATH case "$HOST" in *darwin*) - cmake --install build --strip --prefix "${INSTALLPATH}" ${V:+--verbose} + cmake --install build --strip --prefix "${INSTALLPATH}" ;; *) - cmake --install build --prefix "${INSTALLPATH}" ${V:+--verbose} + cmake --install build --prefix "${INSTALLPATH}" ;; esac diff --git a/contrib/guix/libexec/package.sh b/contrib/guix/libexec/package.sh index 56bd957ec7a..7228346abe7 100755 --- a/contrib/guix/libexec/package.sh +++ b/contrib/guix/libexec/package.sh @@ -95,7 +95,7 @@ set -e -o pipefail ) ;; *darwin*) - cmake --build build --target deploy ${V:+--verbose} + cmake --build build --target deploy mv build/dist/bitcoin-macos-app.zip "${OUTDIR}/${DISTNAME}-${HOST}-unsigned.zip" mkdir -p "unsigned-app-${HOST}" cp --target-directory="unsigned-app-${HOST}" \