summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2023-05-03 19:23:51 +0200
committerKhem Raj <raj.khem@gmail.com>2023-05-03 21:24:55 -0700
commit7e5aaedea9dcab59251a781204a476998551ab0f (patch)
treec59509dbb34d4158d86189416a458aa30be94096
parent36b1cd08bbcf13f5c1b721b9ac63dfb377d47bcf (diff)
downloadmeta-openembedded-7e5aaedea9dcab59251a781204a476998551ab0f.tar.gz
appstream: fix build without gobject-introspection-data
* there is a meson option to disable introspection, it's just called 'gir' fix GIR_MESON_OPTION to resolve: http://errors.yoctoproject.org/Errors/Details/702780/ Run-time dependency gobject-introspection-1.0 found: NO (tried pkgconfig) ../AppStream-0.16.1/meson.build:173:4: ERROR: Dependency "gobject-introspection-1.0" not found, tried pkgconfig Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/appstream/appstream_0.16.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/appstream/appstream_0.16.1.bb b/meta-oe/recipes-support/appstream/appstream_0.16.1.bb
index 50d8cdb4c2..b8cecec41f 100644
--- a/meta-oe/recipes-support/appstream/appstream_0.16.1.bb
+++ b/meta-oe/recipes-support/appstream/appstream_0.16.1.bb
@@ -21,7 +21,7 @@ DEPENDS = " \
21 21
22inherit meson gobject-introspection gettext gtk-doc pkgconfig vala 22inherit meson gobject-introspection gettext gtk-doc pkgconfig vala
23 23
24GIR_MESON_OPTION = "" 24GIR_MESON_OPTION = "gir"
25 25
26SRC_URI = "https://www.freedesktop.org/software/appstream/releases/AppStream-${PV}.tar.xz" 26SRC_URI = "https://www.freedesktop.org/software/appstream/releases/AppStream-${PV}.tar.xz"
27SRC_URI:append:class-target = " file://0001-fix-crosscompile.patch" 27SRC_URI:append:class-target = " file://0001-fix-crosscompile.patch"