From: Francois-Xavier Le Bail Date: Tue, 14 Aug 2018 20:55:10 +0000 (+0200) Subject: Travis CI: Fix folding the 'configure' output X-Git-Tag: tcpdump-4.99-bp~1055 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/23dd961b088e6a00931e462faacf16de8ad246ad Travis CI: Fix folding the 'configure' output --- diff --git a/.travis.yml b/.travis.yml index 26c1b92f..909abd23 100644 --- a/.travis.yml +++ b/.travis.yml @@ -90,10 +90,10 @@ script: - if [ "$CMAKE" = no ]; then touch .devel configure; fi - if [ "$CMAKE" = no ]; then echo '$ ./configure [...]' && echo -n travis_fold:start:script.configure; fi - if [ "$CMAKE" = no ]; then ./configure --with-crypto=${CRYPTO} CPPFLAGS="-I/usr/local/Cellar/openssl/$OSX_SSL_DIR/include/" --prefix=/tmp; fi + - if [ "$CMAKE" = no ]; then echo -n travis_fold:end:script.configure; fi - if [ "$CMAKE" = yes ]; then mkdir build; fi - if [ "$CMAKE" = yes ]; then cd build; fi - if [ "$CMAKE" = yes ]; then cmake -DCMAKE_PREFIX_PATH=/tmp -DCMAKE_INSTALL_PREFIX=/tmp ..; fi - - echo -n travis_fold:end:script.configure - make -s - echo '$ make install [...]' && echo -n travis_fold:start:script.make_install - PATH=$PATH make install