summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2022-02-06 12:00:21 +0100
committersfan5 <sfan5@live.de>2022-02-06 12:00:21 +0100
commit83f1c87676f43bcf65be46fc24c1198cfe413382 (patch)
tree486caabcbd7ccd87fb3332e6fcd75978fbb5005a
parent0197729949491a65c4c10dba673dbb9c8af04c67 (diff)
downloadmpv-83f1c87676f43bcf65be46fc24c1198cfe413382.tar.bz2
mpv-83f1c87676f43bcf65be46fc24c1198cfe413382.tar.xz
ci/appveyor: fix package install lineappveyor
It appears MinGW switched their pkg config implementation from pkg-config to pkgconf, causing all builds to fail because we requested the former.
-rw-r--r--appveyor.yml2
1 files changed, 1 insertions, 1 deletions
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: