From bc3572ec37e9f57f4dd911f8386431d0f3a66a01 Mon Sep 17 00:00:00 2001 From: Eldred Habert Date: Mon, 13 Apr 2026 04:08:38 +0200 Subject: [PATCH] Stop trying to explicitly install `pkg-config` in CI (#1940) Turns out it's already installed by default, but under a different name that's causing extra ops for no real gain. --- .github/scripts/install_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh index 21cadca0..ed79f9fc 100755 --- a/.github/scripts/install_deps.sh +++ b/.github/scripts/install_deps.sh @@ -5,7 +5,7 @@ set -eu case "${1%-*}" in ubuntu) sudo apt-get -qq update - sudo apt-get install -yq bison libpng-dev pkg-config + sudo apt-get install -yq bison libpng-dev ;; macos) # macOS bundles GNU Make 3.81, which doesn't support synced output.