diff options
author | Julie Schwartz <quark@bluespec.com> | 2020-04-15 12:40:54 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 12:40:54 +1200 |
commit | 708c7add7ed202f7841ef2f78450b76a4a8beeb9 (patch) | |
tree | 88d635575393e80396206c6e6c2600e019143155 | |
parent | 31c4122a55e57072cf291219ba3d2711f2025c73 (diff) | |
download | bsc-708c7add7ed202f7841ef2f78450b76a4a8beeb9.tar.gz bsc-708c7add7ed202f7841ef2f78450b76a4a8beeb9.tar.bz2 bsc-708c7add7ed202f7841ef2f78450b76a4a8beeb9.zip |
Add autoconf to the dependencies for macOS
The GitHub macOS VM already has autoconf installed by HomeBrew, so this will introduce a warning in the CI log, but this change should be otherwise benign and will allow the script to be used to install dependencies on other macOS systems (with a clean slate).
-rwxr-xr-x | .github/workflows/install_dependencies_macos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/install_dependencies_macos.sh b/.github/workflows/install_dependencies_macos.sh index bf79f216..1047ea97 100755 --- a/.github/workflows/install_dependencies_macos.sh +++ b/.github/workflows/install_dependencies_macos.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -brew install cabal-install fontconfig gperf icarus-verilog pkg-config && \ +brew install autoconf cabal-install fontconfig gperf icarus-verilog pkg-config && \ cabal update && \ cabal v1-install old-time regex-compat split syb |