From d5c6300f77ff01514d4edcec64c07899abf09e34 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Fri, 29 Jul 2016 07:08:30 +0200 Subject: [PATCH] travis: fix issue with Travis and libtool --- tests/ci/install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/ci/install.sh b/tests/ci/install.sh index 0b4063ce..070ef5f0 100755 --- a/tests/ci/install.sh +++ b/tests/ci/install.sh @@ -5,7 +5,10 @@ set -e case "$(uname -s)" in Darwin) brew update - brew install libevent jansson libxml2 check net-snmp + # Workaround a bug in Travis: + # https://github.com/Homebrew/legacy-homebrew/issues/43874 + brew uninstall libtool + brew install libtool libevent jansson libxml2 check net-snmp ;; Linux) # We prefer gcc-5 -- 2.39.5