We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8c5efe commit 8b5e030Copy full SHA for 8b5e030
build-on.sh
@@ -37,9 +37,9 @@ cd build
37
FORCE_UNSAFE_CONFIGURE=1 ../configure --config-cache $configure_options > log1 2>&1; rc=$?; cat log1; test $rc = 0 || exit 1
38
39
# Build.
40
-$make > log2 2>&1; rc=$?; cat log2; test $rc = 0 || exit 1
+$make V=1 > log2 2>&1; rc=$?; cat log2; test $rc = 0 || exit 1
41
42
# Run the tests.
43
-$make check > log3 2>&1; rc=$?; cat log3; test $rc = 0 || exit 1
+$make check V=1 > log3 2>&1; rc=$?; cat log3; test $rc = 0 || exit 1
44
45
cd ..
0 commit comments