Skip to content

Commit

Permalink
try fixing autoreconf error with homebrew 3
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Oct 3, 2023
1 parent 1bf6efe commit 486955f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _ci-mac-homebrew.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# shellcheck disable=SC3040,SC2039
set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail

extra=''
extra='automake'
[[ "${CW_CONFIG:-}" = *'boringssl'* ]] && extra="${extra} go"
[[ "${CW_CONFIG:-}" != *'mac'* ]] && extra="${extra} llvm"

Expand All @@ -28,7 +28,7 @@ if [ -n "${extra}" ]; then
# shellcheck disable=SC2086
# Using `|| true` to avoid failing due to preinstalled non-Homebrew
# python3: `Could not symlink bin/2to3`
brew install autoconf automake libtool ${extra} || true
brew install ${extra} || true
fi

[[ "${CW_CONFIG:-}" = *'win'* ]] && wineboot --init
Expand Down

0 comments on commit 486955f

Please sign in to comment.