From 0dd1140a71d0947b5ebeab648ded665fb1cd0230 Mon Sep 17 00:00:00 2001 From: Martijn van Beurden Date: Wed, 1 May 2024 08:55:23 +0200 Subject: [PATCH] Add libtool to MacOS dependencies for github actions (#695) --- .github/workflows/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index b7ad3487bd..30e0e6b268 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -69,7 +69,7 @@ jobs: if: startsWith(matrix.os,'macos') && !startsWith(matrix.build-system,'cmake') run: | brew update - brew install automake pkg-config libogg + brew install automake pkg-config libogg libtool - name: Install Linux dependencies if: startsWith(matrix.os,'ubuntu')