diff options
author | Tobias Brunner <tobias@strongswan.org> | 2016-08-24 10:50:28 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2016-08-25 17:21:02 +0200 |
commit | 1806ba0890bc503df3dacf01992ec1bca2b0fbb0 (patch) | |
tree | b274cd40c4c8083575839ef9bcc38fe1d330dca3 | |
parent | 8456d6f5a8e94948075ad69852ec28d8f9774a49 (diff) | |
download | strongswan-1806ba0890bc503df3dacf01992ec1bca2b0fbb0.tar.bz2 strongswan-1806ba0890bc503df3dacf01992ec1bca2b0fbb0.tar.xz |
travis: Add a workaround for a bug regarding libtool installed via Homebrew
-rwxr-xr-x | scripts/test.sh | 2 |
1 files changed, 2 insertions, 0 deletions
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 |