Skip to content

Commit

Permalink
Fix OSX CI failures
Browse files Browse the repository at this point in the history
[Brew released 1.0.0][1] was released today and in true major release
fashion it has broken OSX CI builds.

[1]: http://brew.sh/2016/09/02/homebrew-1.0.0/
  • Loading branch information
xzyfer committed Sep 21, 2016
1 parent ba9258a commit 300f6ac
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions script/ci-install-deps
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ else
fi

if [ "x$AUTOTOOLS" == "xyes" ]; then
sudo add-apt-repository -y ppa:rbose-debianizer/automake &> /dev/null
sudo apt-get -qq update
sudo apt-get -qq install automake
AUTOTOOLS=yes

if [ "$TRAVIS_OS_NAME" == "linux" ]; then
sudo add-apt-repository -y ppa:rbose-debianizer/automake &> /dev/null
sudo apt-get -qq update
sudo apt-get -qq install automake
fi

if [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew uninstall libtool
brew install libtool
fi
fi

0 comments on commit 300f6ac

Please # to comment.