diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-06-08 20:08:23 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-06-08 22:29:39 +0200 |
commit | 06a4f18db6702efa6771daa8853beec7c800c421 (patch) | |
tree | 863e0685eb181afd4c96f22439ed78bc7348bc42 /.travis.yml | |
parent | 1fb19f184332995dd4662c71290aa2951dbc9914 (diff) | |
download | tcpdump-06a4f18db6702efa6771daa8853beec7c800c421.tar.gz |
Travis CI: Set CFLAGS=-Werror with make (autotools build)
The cmake build don't use CFLAGS=-Werror.
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 50870aae..9bb9ae61 100644 --- a/.travis.yml +++ b/.travis.yml @@ -102,7 +102,7 @@ script: - if [ "$CMAKE" = yes ]; then echo travis_fold:start:script.cmake; fi - if [ "$CMAKE" = yes ]; then cmake -DCMAKE_PREFIX_PATH=/tmp -DCMAKE_INSTALL_PREFIX=/tmp ..; fi - if [ "$CMAKE" = yes ]; then echo -n travis_fold:end:script.cmake; fi - - make -s + - make -s CFLAGS=-Werror - echo '$ make install [...]' && echo travis_fold:start:script.make_install - PATH=$PATH make install - echo -n travis_fold:end:script.make_install |