From 45e00f9df85b683b62626f9f3422cb5a6f0f7cb8 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 10 Jun 2023 16:54:08 +0200 Subject: [PATCH] vagrant: darwin64 box: install openssl after xxhash otherwise a openssl build error might manifest in complaints about xxhash not being installed. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index fd5931966..022b12810 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -111,7 +111,7 @@ def packages_darwin sudo softwareupdate --install --all which brew || CI=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" brew update > /dev/null - brew install pkg-config readline openssl@1.1 xxhash zstd lz4 xz + brew install pkg-config readline xxhash zstd lz4 xz openssl@1.1 brew install --cask macfuse # brew upgrade # upgrade everything (takes rather long) echo 'export PKG_CONFIG_PATH=/usr/local/opt/openssl@1.1/lib/pkgconfig' >> ~vagrant/.bash_profile