We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e45fb7e commit 85f4a4bCopy full SHA for 85f4a4b
contrib/guix/libexec/build.sh
@@ -3,6 +3,14 @@ export LC_ALL=C
3
set -e -o pipefail
4
export TZ=UTC
5
6
+if [ -n "$V" ]; then
7
+ # Print both unexpanded (-v) and expanded (-x) forms of commands as they are
8
+ # read from this file.
9
+ set -vx
10
+ # Set VERBOSE for CMake-based builds
11
+ export VERBOSE="$V"
12
+fi
13
+
14
# Check that environment variables assumed to be set by the environment are set
15
echo "Building for platform triple ${HOST:?not set} with reference timestamp ${SOURCE_DATE_EPOCH:?not set}..."
16
echo "At most ${MAX_JOBS:?not set} jobs will run at once..."
0 commit comments