From abd744ec2fb3b8e38e01796a1485c1f25f8fb5f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tina=20M=C3=BCller?= Date: Sun, 28 Apr 2024 17:59:15 +0200 Subject: [PATCH] ci: Install libtool on macOS configure.ac:56: error: possibly undefined macro: AC_PROG_LIBTOOL --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5ed55431..bd3f87bb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,7 +29,7 @@ jobs: - name: Install software if: ${{ matrix.os == 'macOS-latest' }} run: | - brew install automake bash coreutils make + brew install automake bash coreutils make libtool echo "/usr/local/opt/coreutils/libexec/gnubin" >> $GITHUB_PATH echo "/usr/local/opt/make/libexec/gnubin" >> $GITHUB_PATH - name: Fetch branches