diff options
author | Matt Johnston <matt@ucc.asn.au> | 2018-03-04 15:09:41 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-03-04 15:09:41 +0800 |
commit | 4b36e24735dcc0c81c412375b333073aa2c62323 (patch) | |
tree | 196f151d76da1aa500e9bd62843046c7a3c6f6e3 /.travis.yml | |
parent | a5eac0a065036867c98636be1db34660a946dad1 (diff) |
print config.log on failure
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index aa2dee5..f776307 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,7 +42,7 @@ before_install: install: - autoconf - autoheader - - ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS $EXTRACFLAGS" --prefix="$HOME/inst" + - ./configure $CONFIGURE_FLAGS CFLAGS="-O2 -Wall -Wno-pointer-sign $WEXTRAFLAGS $EXTRACFLAGS" --prefix="$HOME/inst" || (cat config.log; exit 1) - if [ "$NOWRITEV" = "1" ]; then sed -i -e s/HAVE_WRITEV/DONT_HAVE_WRITEV/ config.h ; fi - make -j3 - test -z $DO_FUZZ || make fuzzstandalone |