summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-06-17 11:43:16 +0200
committerAlexander Kanavin <alex.kanavin@gmail.com>2020-06-17 11:43:16 +0200
commit56ba5656258b82dbc069ab3a61e597c931a16a83 (patch)
treedbeb4929ab867ebaab8ccc80b3108ae683e08a42
parente3e0f7dcd48c08eee76ab79b278b622f02d3bd18 (diff)
downloadgobject-introspection-56ba5656258b82dbc069ab3a61e597c931a16a83.tar.gz
gir: add a dependency for g-ir-compiler for building .girs
meson inserts the dependency if the compiler is used directly, but fails to do so if the compiler is run through a wrapper. This leads to build race errors between building the compiler and using it. Fix provided by Quentin Schulz <quentin.schulz@streamunlimited.com>
-rw-r--r--gir/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/gir/meson.build b/gir/meson.build
index b37fdb81..557e5517 100644
--- a/gir/meson.build
+++ b/gir/meson.build
@@ -448,7 +448,7 @@ foreach gir : gir_files
typelibs += custom_target('generate-typelib-@0@'.format(gir).underscorify(),
input: gir,
output: '@BASENAME@.typelib',
- depends: [gobject_gir, ],
+ depends: [gobject_gir, gircompiler, ],
command: gircompiler_command,
install: true,
install_dir: typelibdir,