diff options
author | Stefan Schmidt <s.schmidt@samsung.com> | 2019-07-02 10:59:08 +0200 |
---|---|---|
committer | Marcel Hollerbach <mail@bu5hm4n.de> | 2019-07-04 11:09:57 +0200 |
commit | f19189a54fb67f05de0e67acaeb48c35cd67dda0 (patch) | |
tree | f1734dcec7f18dd5b24b276cd904b6c3a63245f9 /.ci | |
parent | bdc69870671a9b4fe0ef89499dd6f5b9d23406d9 (diff) | |
download | efl-f19189a54fb67f05de0e67acaeb48c35cd67dda0.tar.gz |
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.
Diffstat (limited to '.ci')
-rw-r--r-- | .ci/cross_toolchain.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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' |