diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2020-04-22 21:16:08 -0400 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.com> | 2020-04-23 16:32:10 -0400 |
commit | d01a387475e2665275a6cd6b0059bf91121b8300 (patch) | |
tree | be0ebaca7c7390e97b340d4b51cd36367bc74ed9 /.gitlab-ci/minimal.Dockerfile | |
parent | ec00edd941953626ac027810f747847f68a71000 (diff) | |
download | gobject-introspection-d01a387475e2665275a6cd6b0059bf91121b8300.tar.gz |
Meson: Override gobject-introspection-1.0 dependency
When gobject-introspection-1.0 pkg-config is not found on the system,
Meson can fallback to configure g-i as subproject and needs a dependency
object to replace the pc file.
The dependency file needs to ensure that typelibs are created before
compiling any other gir and provide the girdir for files within build
directory. It also need to provide glib dependencies required to compile
girs.
Bump Meson version to 0.54.0 to use meson.override_dependency().
Diffstat (limited to '.gitlab-ci/minimal.Dockerfile')
-rw-r--r-- | .gitlab-ci/minimal.Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci/minimal.Dockerfile b/.gitlab-ci/minimal.Dockerfile index b33aa64b..e4d1f821 100644 --- a/.gitlab-ci/minimal.Dockerfile +++ b/.gitlab-ci/minimal.Dockerfile @@ -15,7 +15,7 @@ RUN dnf -y install \ libmount-devel \ && dnf clean all -RUN pip3 install meson==0.52.0 +RUN pip3 install meson==0.54.0 ARG HOST_USER_ID=5555 ENV HOST_USER_ID ${HOST_USER_ID} |