diff options
| -rw-r--r-- | .travis.yml | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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 | 
