summaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2019-01-06 19:48:54 +0000
committeriphydf <iphydf@users.noreply.github.com>2019-01-06 21:03:16 +0000
commit6bc12232ac819dcfec1b12846dd66bf00cb09288 (patch)
tree19c1bc3490582956c786579dcda4b410ecabefb9 /.travis
parente5561ad2b0db69cc58ce6d858bd6aca1928b0d8f (diff)
Use (probably?) correct path to test log to cat on error.
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/autotools-linux2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/autotools-linux b/.travis/autotools-linux
index 36828641..96c110ab 100755
--- a/.travis/autotools-linux
+++ b/.travis/autotools-linux
@@ -41,7 +41,7 @@ travis_script() {
41 cd _build # pushd 41 cd _build # pushd
42 ../configure $CONFIG_FLAGS || (cat config.log && false) 42 ../configure $CONFIG_FLAGS || (cat config.log && false)
43 make "-j$NPROC" -k CFLAGS="$C_FLAGS" LDFLAGS="$LD_FLAGS" 43 make "-j$NPROC" -k CFLAGS="$C_FLAGS" LDFLAGS="$LD_FLAGS"
44 make -j50 -k distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIG_FLAGS" || (cat build/test-suite.log && false) 44 make -j50 -k distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIG_FLAGS" || (cat tox-*/_build/build/test-suite.log && false)
45 cd - # popd 45 cd - # popd
46} 46}
47 47