From 1bf6efe3436935e0b504ef58b9290791ff4ef1cd Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 3 Oct 2023 13:06:13 +0000 Subject: [PATCH] try fixing autoreconf error with homebrew 2 --- _ci-mac-homebrew.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_ci-mac-homebrew.sh b/_ci-mac-homebrew.sh index 07b71933f..6ee8870a5 100755 --- a/_ci-mac-homebrew.sh +++ b/_ci-mac-homebrew.sh @@ -21,14 +21,14 @@ fi if [ -n "${extra}" ]; then export HOMEBREW_NO_AUTO_UPDATE=1 -# export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 + export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 export HOMEBREW_NO_ANALYTICS=1 export HOMEBREW_NO_ANALYTICS_MESSAGE_OUTPUT=1 brew update >/dev/null || true # shellcheck disable=SC2086 # Using `|| true` to avoid failing due to preinstalled non-Homebrew # python3: `Could not symlink bin/2to3` - brew install ${extra} || true + brew install autoconf automake libtool ${extra} || true fi [[ "${CW_CONFIG:-}" = *'win'* ]] && wineboot --init