Skip to content

Commit 8b5e030

Browse files
committed
Work on build-*.
1 parent c8c5efe commit 8b5e030

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-on.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ cd build
3737
FORCE_UNSAFE_CONFIGURE=1 ../configure --config-cache $configure_options > log1 2>&1; rc=$?; cat log1; test $rc = 0 || exit 1
3838

3939
# Build.
40-
$make > log2 2>&1; rc=$?; cat log2; test $rc = 0 || exit 1
40+
$make V=1 > log2 2>&1; rc=$?; cat log2; test $rc = 0 || exit 1
4141

4242
# Run the tests.
43-
$make check > log3 2>&1; rc=$?; cat log3; test $rc = 0 || exit 1
43+
$make check V=1 > log3 2>&1; rc=$?; cat log3; test $rc = 0 || exit 1
4444

4545
cd ..

0 commit comments

Comments
 (0)