From 7314e09171cc2082160d8673ef9a4e3406fe5fca Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Fri, 4 Feb 2022 12:05:53 +0100 Subject: [PATCH] appveyor: Install autotools package on 2019 image On the recently updated 2019 image, autoreconf is not found anymore, as recent versions of msys2 don't ship autools with base-devel aymore, so install the autotools package explicitly. --- .appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 3c826f3ccf..313ad9e6fc 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -30,6 +30,8 @@ install: IF "%IMG%" == "2019" set OPENSSL=OpenSSL-v111 set OPENSSL_DIR=/c/%OPENSSL%-%TEST% C:\%OPENSSL%-%TEST%\bin\openssl.exe version -a + # newer versions of msys2 don't provide autotools via base-devel anymore + - IF "%IMG%" == "2019" %MSYS_SH% --login -c ". /etc/profile && pacman --noconfirm -S --needed autotools" build_script: - '%MSYS_SH% --login -c ". /etc/profile && cd $APPVEYOR_BUILD_FOLDER && ./scripts/test.sh deps"' -- 2.47.2