mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 01:40:07 +00:00
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) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -28,14 +28,14 @@ GTKDOC_MESON_OPTION = "gtk_doc"
|
|||||||
|
|
||||||
MULTILIB_SCRIPTS = "${PN}:${bindir}/g-ir-annotation-tool ${PN}:${bindir}/g-ir-scanner"
|
MULTILIB_SCRIPTS = "${PN}:${bindir}/g-ir-annotation-tool ${PN}:${bindir}/g-ir-scanner"
|
||||||
|
|
||||||
DEPENDS_append = " libffi zlib glib-2.0 python3 flex-native bison-native autoconf-archive"
|
DEPENDS += " libffi zlib glib-2.0 python3 flex-native bison-native autoconf-archive"
|
||||||
|
|
||||||
# target build needs qemu to run temporary introspection binaries created
|
# target build needs qemu to run temporary introspection binaries created
|
||||||
# on the fly by g-ir-scanner and a native version of itself to run
|
# on the fly by g-ir-scanner and a native version of itself to run
|
||||||
# native versions of its own tools during build.
|
# native versions of its own tools during build.
|
||||||
# Also prelink-rtld is used to find out library dependencies of introspection binaries
|
# Also prelink-rtld is used to find out library dependencies of introspection binaries
|
||||||
# (standard ldd doesn't work when cross-compiling).
|
# (standard ldd doesn't work when cross-compiling).
|
||||||
DEPENDS_class-target_append = " gobject-introspection-native qemu-native prelink-native"
|
DEPENDS_append_class-target = " gobject-introspection-native qemu-native prelink-native"
|
||||||
|
|
||||||
# needed for writing out the qemu wrapper script
|
# needed for writing out the qemu wrapper script
|
||||||
export STAGING_DIR_HOST
|
export STAGING_DIR_HOST
|
||||||
|
|||||||
Reference in New Issue
Block a user