summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authortorque <torque@1>2016-09-24 12:50:51 -0700
committertorque <torque@1>2016-09-24 13:01:51 -0700
commit429231a357bd702e84a238870f27dee4975cb014 (patch)
treedd829bea1505367f28bd97b15ce2394819644dd6 /.travis.yml
parentcde05e0716ef2b74530633d463ad7f6d0b94ac61 (diff)
downloadlibass-429231a357bd702e84a238870f27dee4975cb014.tar.bz2
libass-429231a357bd702e84a238870f27dee4975cb014.tar.xz
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.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
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