From 429231a357bd702e84a238870f27dee4975cb014 Mon Sep 17 00:00:00 2001 From: torque Date: Sat, 24 Sep 2016 12:50:51 -0700 Subject: Fix broken MacOS CI. At some point in the past Travis and homebrew colluded to break the preinstalled libtool on travis MacOS instances. Forcing brew to reinstall libtool seems to be the common solution that several other projects on github have used. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4283b9e..68a4ff2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ branches: before_install: - (sudo apt-get update || brew update) - - (sudo apt-get install -y fontconfig libfribidi-dev yasm || brew install fontconfig freetype fribidi yasm) && ./autogen.sh && ./configure + - (sudo apt-get install -y fontconfig libfribidi-dev yasm || (brew uninstall libtool && brew install fontconfig freetype fribidi libtool yasm)) && ./autogen.sh && ./configure script: - make -j4 -- cgit v1.2.3