diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2023-05-03 17:01:11 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-05-16 07:30:12 -0400 |
commit | f3379c8d981a845db161f7db3c0c5dd9c143e2de (patch) | |
tree | 65c2b2105f4a535b11eb72ab5e1d0124436b9324 | |
parent | a6f1be06164f1f8a2a398f1b5cbbb7797a0df2fe (diff) | |
download | meta-openembedded-f3379c8d981a845db161f7db3c0c5dd9c143e2de.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: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/appstream/appstream_0.16.1.bb | 2 |
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 | ||
22 | inherit meson gobject-introspection gettext gtk-doc pkgconfig vala | 22 | inherit meson gobject-introspection gettext gtk-doc pkgconfig vala |
23 | 23 | ||
24 | GIR_MESON_OPTION = "" | 24 | GIR_MESON_OPTION = "gir" |
25 | 25 | ||
26 | SRC_URI = "https://www.freedesktop.org/software/appstream/releases/AppStream-${PV}.tar.xz" | 26 | SRC_URI = "https://www.freedesktop.org/software/appstream/releases/AppStream-${PV}.tar.xz" |
27 | SRC_URI:append:class-target = " file://0001-fix-crosscompile.patch" | 27 | SRC_URI:append:class-target = " file://0001-fix-crosscompile.patch" |