summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-gir-add-a-dependency-for-g-ir-compiler-for-building-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-gir-add-a-dependency-for-g-ir-compiler-for-building-.patch')
-rw-r--r--meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-gir-add-a-dependency-for-g-ir-compiler-for-building-.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-gir-add-a-dependency-for-g-ir-compiler-for-building-.patch b/meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-gir-add-a-dependency-for-g-ir-compiler-for-building-.patch
deleted file mode 100644
index fc37a5bb96..0000000000
--- a/meta/recipes-gnome/gobject-introspection/gobject-introspection/0001-gir-add-a-dependency-for-g-ir-compiler-for-building-.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From 56ba5656258b82dbc069ab3a61e597c931a16a83 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Wed, 17 Jun 2020 11:43:16 +0200
4Subject: [PATCH] gir: add a dependency for g-ir-compiler for building .girs
5
6meson inserts the dependency if the compiler is used directly, but
7fails to do so if the compiler is run through a wrapper. This leads
8to build race errors between building the compiler and using it.
9
10Fix provided by Quentin Schulz <quentin.schulz@streamunlimited.com>
11
12Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/gobject-introspection/-/merge_requests/228]
13Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
14---
15 gir/meson.build | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/gir/meson.build b/gir/meson.build
19index b37fdb81..557e5517 100644
20--- a/gir/meson.build
21+++ b/gir/meson.build
22@@ -448,7 +448,7 @@ foreach gir : gir_files
23 typelibs += custom_target('generate-typelib-@0@'.format(gir).underscorify(),
24 input: gir,
25 output: '@BASENAME@.typelib',
26- depends: [gobject_gir, ],
27+ depends: [gobject_gir, gircompiler, ],
28 command: gircompiler_command,
29 install: true,
30 install_dir: typelibdir,
31--
322.27.0
33