From b306c2c33c112e0835da6fd7012ba430586f3ca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20B=C3=A1lint=20Misius?= Date: Wed, 19 Oct 2022 14:32:54 +0200 Subject: [PATCH] Fix ghactions mingw-on-linux builds mingw-on-windows builds still work fine, but the linux ones were actually using plain gcc targeting the host. --- .github/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/build.sh b/.github/build.sh index 6ea2ec925..34707b696 100755 --- a/.github/build.sh +++ b/.github/build.sh @@ -218,7 +218,7 @@ if [[ $RELEASE_TYPE != dev ]]; then meson_configure+=$'\t'-Dignore_updates=false fi if [[ $BSH_HOST_PLATFORM-$BSH_HOST_LIBC == windows-mingw ]]; then - if [[ $BSH_HOST_PLATFORM == linux ]]; then + if [[ $BSH_BUILD_PLATFORM == linux ]]; then meson_configure+=$'\t'--cross-file=.github/mingw-ghactions.ini fi else