From b0a00c96071e4300277955a77c2998d7f4db686d Mon Sep 17 00:00:00 2001 From: Oleg Oshmyan Date: Sun, 5 Feb 2017 04:17:14 +0200 Subject: Travis CI: remove libtool reinstall hack on OS X The problem was fixed in Homebrew in libtool 2.4.6_1: https://github.com/Homebrew/homebrew-core/commit/712f737a7f64f0fd905357c3765cdce0821a4af2 Since https://blog.travis-ci.com/2016-10-04-osx-73-default-image-live/, this libtool comes preinstalled on Travis CI, thus the hack is no longer needed. Homebrew bug report possibly relevant to the original problem: https://github.com/Homebrew/legacy-homebrew/issues/43874 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f18d410..6f093cb 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 libfontconfig1-dev libfreetype6-dev libfribidi-dev yasm || (brew uninstall libtool; brew install freetype fribidi libtool yasm)) && ./autogen.sh && ./configure + - (sudo apt-get install -y libfontconfig1-dev libfreetype6-dev libfribidi-dev yasm || brew install freetype fribidi yasm) && ./autogen.sh && ./configure script: - make -j4 -- cgit v1.2.3