From 45a72d6bec34dd73c8b3304b155c96b31fcb907b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ekstr=C3=B6m?= Date: Fri, 22 Nov 2024 19:47:07 +0200 Subject: [PATCH] github/workflows: switch Ubuntu mingw-w64 build to pkgconf Ubuntu 24.04's pkg-config is already an almost empty transitional package that depends on pkgconf, and pkgconf contains the `/usr/bin/pkg-config` binary. Thus while we are moving macOS to it, we shall do the same with this mingw-w64 build. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 225528fe5adb1..8eeb37ac9e12c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,7 +62,7 @@ jobs: run: | sudo dpkg --add-architecture i386 sudo apt-get update - sudo apt-get install -y ccache g++-mingw-w64 gcc-multilib meson nasm ninja-build pkg-config ${{ matrix.wine }} + sudo apt-get install -y ccache g++-mingw-w64 gcc-multilib meson nasm ninja-build pkgconf ${{ matrix.wine }} - name: Install Meson Wraps run: |