mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-06-17 01:58:57 +02:00
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:
@@ -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
|
||||
|
||||
|
||||
@@ -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}" \
|
||||
|
||||
Reference in New Issue
Block a user