From 1ff73cd5e068728488972dbb1eaab8512b47d928 Mon Sep 17 00:00:00 2001 From: Rangi Date: Sun, 12 Apr 2026 22:33:25 -0400 Subject: [PATCH] Revert "Stop trying to explicitly install `pkg-config` in CI (#1940)" This reverts commit bc3572ec37e9f57f4dd911f8386431d0f3a66a01. Turns out that our Dockerfile *does* need to install `pkg-config` on the `debian:12-slim` image. --- .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 ed79f9fc..21cadca0 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 + sudo apt-get install -yq bison libpng-dev pkg-config ;; macos) # macOS bundles GNU Make 3.81, which doesn't support synced output.