From 5f587cf35b6b06465e0eb781d45fc673b61eb596 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 15 Oct 2025 14:20:14 -0500 Subject: [PATCH 1/2] relink openssl@3 to fix build --- tools/mac_setup.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/mac_setup.sh b/tools/mac_setup.sh index 0ae0b35359e6e8..f6bc2be3e5b851 100755 --- a/tools/mac_setup.sh +++ b/tools/mac_setup.sh @@ -32,6 +32,10 @@ else brew up fi +# Relink openssl +brew unlink openssl@3 || true +brew link overwrite openssl@3 + brew bundle --file=- <<-EOS brew "git-lfs" brew "capnp" From 73297892ab7b2ec84200d74ac0c1f81059f560ee Mon Sep 17 00:00:00 2001 From: David Date: Wed, 15 Oct 2025 14:21:09 -0500 Subject: [PATCH 2/2] fix --- tools/mac_setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mac_setup.sh b/tools/mac_setup.sh index f6bc2be3e5b851..5094391bc1cb44 100755 --- a/tools/mac_setup.sh +++ b/tools/mac_setup.sh @@ -34,7 +34,7 @@ fi # Relink openssl brew unlink openssl@3 || true -brew link overwrite openssl@3 +brew link --overwrite openssl@3 brew bundle --file=- <<-EOS brew "git-lfs"