guix: Drop redundant CMake --verbose options

CMake's verbose output is already controlled by the `VERBOSE`
environment variable, which has been exported since commit 85f4a4b082.
This commit is contained in:
Hennadii Stepanov
2026-06-11 10:16:49 +01:00
parent 355fffb8cc
commit 2d86083fd4
2 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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}" \