From: Guy Harris Date: Thu, 24 May 2018 21:46:21 +0000 (-0700) Subject: Don't do the make silently; we want to see the build commands. X-Git-Tag: libpcap-1.9-bp~20 X-Git-Url: https://git.tcpdump.org/libpcap/commitdiff_plain/01287da7f4d9832a53253f59a6b054c9f34a97f7 Don't do the make silently; we want to see the build commands. At minimum, this may help debug the build problems with GitHub pull request #721. --- diff --git a/.travis.yml b/.travis.yml index c4654014..d078596d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -75,7 +75,7 @@ script: - if [ "$COVERITY_SCAN_BRANCH" != 1 -a "$CMAKE" = yes ]; then cd build; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 -a "$CMAKE" = yes ]; then cmake -DCMAKE_INSTALL_PREFIX=/tmp $ENABLE_REMOTE ..; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo -n travis_fold:end:script.configure; fi - - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make -s all testprogs; fi + - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make all testprogs; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo '$ make install [...]' && echo -n travis_fold:start:script.make_install; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then PATH=$PATH make install; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo -n travis_fold:end:script.make_install; fi