From f19189a54fb67f05de0e67acaeb48c35cd67dda0 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 2 Jul 2019 10:59:08 +0200 Subject: [PATCH] ci: cross: make sure we use the mingw pkg-config to detect cross deps This only came up when we had gnutls native but not cross to find out that we used the system pkg-config all the time to detect cross. Making sure we use the correct tool to detect the cross dependencies. --- .ci/cross_toolchain.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/cross_toolchain.txt b/.ci/cross_toolchain.txt index 565643b93e..756888d3db 100644 --- a/.ci/cross_toolchain.txt +++ b/.ci/cross_toolchain.txt @@ -5,7 +5,7 @@ ar = 'x86_64-w64-mingw32-ar' ranlib = 'x86_64-w64-mingw32-ranlib' strip = 'x86_64-w64-mingw32-strip' windres = 'x86_64-w64-mingw32-windres' -pkgconfig = 'pkg-config' +pkgconfig = 'x86_64-w64-mingw32-pkg-config' [host_machine] system = 'windows'