From 1806ba0890bc503df3dacf01992ec1bca2b0fbb0 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 24 Aug 2016 10:50:28 +0200 Subject: [PATCH] travis: Add a workaround for a bug regarding libtool installed via Homebrew --- scripts/test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/test.sh b/scripts/test.sh index 26bf1b901..1d94b9bf0 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -124,6 +124,8 @@ if test "$1" = "deps"; then ;; osx) brew update && \ + # workaround for issue #6352 + brew uninstall --force libtool && brew install libtool && \ brew install $DEPS ;; esac