From 83f1c87676f43bcf65be46fc24c1198cfe413382 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Sun, 6 Feb 2022 12:00:21 +0100 Subject: ci/appveyor: fix package install line It appears MinGW switched their pkg config implementation from pkg-config to pkgconf, causing all builds to fail because we requested the former. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index a385ac0364..8f89e0144a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,7 +26,7 @@ install: # Update non-core packages - C:\msys64\usr\bin\pacman -Suu --noconfirm --noprogressbar --ask=20 # Install required MSYS2 packages - - C:\msys64\usr\bin\pacman -S --noconfirm --noprogressbar --needed base-devel perl python pkg-config + - C:\msys64\usr\bin\pacman -S --noconfirm --noprogressbar --needed base-devel perl python pkgconf # Now MSYS2 is up to date, do the rest of the install from a bash script - C:\msys64\usr\bin\bash -lc "cd && exec \"$APPVEYOR_BUILD_FOLDER\"/TOOLS/appveyor-install.sh" build_script: -- cgit v1.2.3