From 05f1912b63f58ad3525d9b2dc0fae21a3994c04d Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Sat, 24 Sep 2016 19:58:35 +0100 Subject: [PATCH] Problem: Travis CI OSX builds are broken Solution: add a workaround to reinstall libtool. Travis hasn't fixed the issue in a month, so time for a little hack until they sort it. --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5af44e85..d3c1bdfe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,10 @@ env: - PKG_CONFIG_PATH=${BUILD_PREFIX}/lib/pkgconfig - DISTCHECK_CONFIGURE_FLAGS="--with-libsodium --prefix=${BUILD_PREFIX}" +before_install: +# workaround for Travis OSX CI bug, hasn't been fixed in a month so time for a hack +- if [ $TRAVIS_OS_NAME == "osx" ] ; then brew uninstall libtool && brew install libtool ; fi + # Build required projects first before_script: - mkdir tmp