From 4c763dd0925fb6db5766d7267ae6eb13d0c4257e Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Wed, 21 Dec 2022 22:20:43 +0100 Subject: [PATCH] gitlab-ci: Revert accidental change to setup_mingw.sh Commit 3aaaf5ca shouldn't have changed this line. We need these libraries for a full libxml2 build. --- .gitlab-ci/setup_mingw.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci/setup_mingw.sh b/.gitlab-ci/setup_mingw.sh index c6468362..7e61c349 100644 --- a/.gitlab-ci/setup_mingw.sh +++ b/.gitlab-ci/setup_mingw.sh @@ -6,7 +6,7 @@ prefix= if [ -n "$MINGW_PACKAGE_PREFIX" ]; then prefix="${MINGW_PACKAGE_PREFIX}-" fi -for module in libiconv python "$@"; do +for module in libiconv python xz zlib "$@"; do pacman --noconfirm -S --needed ${prefix}$module done