CI: Don't fail on MacOS if brew cannot remove libtool.
authortorque <torque@1>
Sat, 24 Sep 2016 20:07:34 +0000 (13:07 -0700)
committertorque <torque@1>
Sat, 24 Sep 2016 20:17:41 +0000 (13:17 -0700)
This is the better option, as it won't break the CI script if travis
ends up removing the preinstalled libtool bundle for whatever reason.

.travis.yml

index 68a4ff2d095934b0344abdafa00af5995553bafc..c441a1a6522aec2500e328c3c3dba12463fab9bc 100644 (file)
@@ -20,7 +20,7 @@ branches:
 
 before_install:
   - (sudo apt-get update || brew update)
-  - (sudo apt-get install -y fontconfig libfribidi-dev yasm || (brew uninstall libtool && brew install fontconfig freetype fribidi libtool 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