CI/Travis/macOS: Fix "brew reinstall" invocation (#9259)

"-s" is "--build-from-source", an option to `brew install`.  This was
never a documented option per `brew help reinstall`.  It's not clear why
we were using this option, but it now fails the CI build.

ref https://github.com/Homebrew/brew/pull/5274
ref https://github.com/Homebrew/brew/issues/1656
This commit is contained in:
Justin M. Keyes 2018-11-20 20:20:11 +01:00 committed by GitHub
parent 016ebb4185
commit 85761dd426
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ fi
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
brew install ninja
brew install gettext
brew reinstall -s libtool
brew reinstall libtool
brew install ccache
export PATH="/usr/local/opt/ccache/libexec:$PATH"
fi