Attempt to fix macOS workflow mk8

This commit is contained in:
ejurgensen
2022-01-12 17:16:06 +01:00
parent 35382d1a7e
commit 074ad56ca1
2 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,9 @@ jobs:
- name: Install gperf, bison and flex
# MacOS comes with an ancient bison, we need a newer version. Homebrew's
# bison and flex are keg-only, which means they are not symlinked into
# /usr/local because macOS already provides this software.
# /usr/local because macOS already provides this software. Homebrew tells
# you to adjust the $PATH, but I couldn't make that work, and I think
# symlinking is a better solution for simple binaries.
run: |
brew install gperf bison flex
sudo ln -s /usr/local/opt/bison/bin/bison /usr/local/bin/bison