summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2023-06-10 16:54:08 +0200
committerThomas Waldmann <tw@waldmann-edv.de>2023-06-10 16:54:08 +0200
commit45e00f9df85b683b62626f9f3422cb5a6f0f7cb8 (patch)
tree298e0d698d188214b10d25c2fa8c7a86007898b5 /Vagrantfile
parent47df6f5a5ddf44e46cc7fabf287a10e9efc9e2aa (diff)
vagrant: darwin64 box: install openssl after xxhash
otherwise a openssl build error might manifest in complaints about xxhash not being installed.
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
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