From ebe97e8f2a9e3a7105bceb13c994e967155e4aaf Mon Sep 17 00:00:00 2001 From: Dmitry Podgorny Date: Thu, 29 Jun 2017 19:00:54 +0300 Subject: [PATCH] travis-ci: don't use custom CFLAGS Makefile.am provides -Wall and -Werror now. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8abd76c..f5136e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ install: before_script: - ./bootstrap.sh script: - - ./configure ${CONFIGURE_OPT} && make CFLAGS="-Wall -Werror" && make CFLAGS="-Wall -Werror" check-TESTS + - ./configure ${CONFIGURE_OPT} && make && make check-TESTS env: - CONFIGURE_OPT="--without-libxml2" - CONFIGURE_OPT="--with-libxml2"