diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2016-07-28 00:36:55 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2016-07-28 00:36:55 -0400 |
commit | 50723585ed380744358de054e2a55dccee65dfd7 (patch) | |
tree | acc9c72f49eb29b03c2207facb906a4aad1da1d7 | |
parent | 17bf323221cf1852457eb29a861e589b5e5e7aa3 (diff) |
travis: Install libtool for OS X builds
CI is failing due to missing libtoolize, so I'm trying this.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c76d10c51..52cb14614 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ language: c install: - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update > /dev/null; fi - - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install openssl libidn rtmpdump libssh2 c-ares libmetalink libressl nghttp2; fi + - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libtool openssl libidn rtmpdump libssh2 c-ares libmetalink libressl nghttp2; fi before_script: - ./buildconf |