summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-27 14:14:40 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-05 23:35:18 +0000
commit6c2eb8edc9ef61c0d62f97485aafc4543b3a0917 (patch)
treebf3679bf6c72ada0eff72bffea80144f83b752cf /meta
parent3436674697677cb213f1007358a5a743eac29d75 (diff)
downloadpoky-6c2eb8edc9ef61c0d62f97485aafc4543b3a0917.tar.gz
gobject-introspection: Fix variable override order
The DEPENDS variable override ordering here was almostly certainly incorrect and led to weird behaviour when making changes elsewhere. Correct it. (From OE-Core rev: c8f7e92244b3c52c275a457aced69086800351d8) (From OE-Core rev: 3f56b2666f823dadca84f76daee829f19cce3d6f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 3a59f2abe2713151f429d50a96e2360598fd30df) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-gnome/gobject-introspection/gobject-introspection_1.64.1.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.64.1.bb b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.64.1.bb
index 4d80f00e10..0f0f7a82c4 100644
--- a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.64.1.bb
+++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.64.1.bb
@@ -29,14 +29,14 @@ GTKDOC_MESON_OPTION = "gtk_doc"
29 29
30MULTILIB_SCRIPTS = "${PN}:${bindir}/g-ir-annotation-tool ${PN}:${bindir}/g-ir-scanner" 30MULTILIB_SCRIPTS = "${PN}:${bindir}/g-ir-annotation-tool ${PN}:${bindir}/g-ir-scanner"
31 31
32DEPENDS_append = " libffi zlib glib-2.0 python3 flex-native bison-native autoconf-archive" 32DEPENDS += " libffi zlib glib-2.0 python3 flex-native bison-native autoconf-archive"
33 33
34# target build needs qemu to run temporary introspection binaries created 34# target build needs qemu to run temporary introspection binaries created
35# on the fly by g-ir-scanner and a native version of itself to run 35# on the fly by g-ir-scanner and a native version of itself to run
36# native versions of its own tools during build. 36# native versions of its own tools during build.
37# Also prelink-rtld is used to find out library dependencies of introspection binaries 37# Also prelink-rtld is used to find out library dependencies of introspection binaries
38# (standard ldd doesn't work when cross-compiling). 38# (standard ldd doesn't work when cross-compiling).
39DEPENDS_class-target_append = " gobject-introspection-native qemu-native prelink-native" 39DEPENDS_append_class-target = " gobject-introspection-native qemu-native prelink-native"
40 40
41# needed for writing out the qemu wrapper script 41# needed for writing out the qemu wrapper script
42export STAGING_DIR_HOST 42export STAGING_DIR_HOST