From f61de6e8977e8d87a32c59df0fe6b7fedab7c6b9 Mon Sep 17 00:00:00 2001 From: Dmitry Mikhirev Date: Fri, 19 Dec 2014 00:06:29 +0300 Subject: trying to fix build on travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fd43039..a302318 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,6 @@ install: - sudo apt-get install -yq libpcre3-dev - pushd /tmp/make-${MAKE_VER} && ./configure && make -j2 && sudo make install ; popd - sudo pip install cpp-coveralls -script: /usr/local/bin/make check $(test "$CC" = gcc && echo 'CFLAGS=-Wall\ -g\ -fprofile-arcs\ -ftest-coverage') +script: if test "$CC" = gcc; then /usr/local/bin/make check 'CFLAGS=-Wall -g -fprofile-arcs -ftest-coverage'; else /usr/local/bin/make check; fi after_success: - test "$CC" = gcc && coveralls -- cgit v1.2.1