diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2018-10-16 00:34:56 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-16 20:35:43 +0100 |
commit | 4e1c5499fefda0c0814153a4a6cdaa5261a3b517 (patch) | |
tree | 906197921dab55e53a35cac6695ce336568bacf3 /meta/classes/gobject-introspection.bbclass | |
parent | 95477eaeded87fa069d8832ab44f518e32d3ef6d (diff) | |
download | poky-4e1c5499fefda0c0814153a4a6cdaa5261a3b517.tar.gz |
gobject-introspection.bbclass: fix gir installed but not shipped in any package while multilib enabled
Since commit [9524330 gobject-introspection: fix multilib install
file conflicts] applied in oe-core, while multilib enabled, gir
files will be installed to `${libdir}'.
Refer above commit, modify gobject-introspection.bbclass to
split gir to package correctly.
(From OE-Core rev: e0cc1dc6f1c14babe29a29a7211dc1c69d782b95)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/gobject-introspection.bbclass')
-rw-r--r-- | meta/classes/gobject-introspection.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/gobject-introspection.bbclass b/meta/classes/gobject-introspection.bbclass index b6160b88b6..a323c1fc87 100644 --- a/meta/classes/gobject-introspection.bbclass +++ b/meta/classes/gobject-introspection.bbclass | |||
@@ -40,4 +40,4 @@ FILES_${PN}_append = " ${libdir}/girepository-*/*.typelib" | |||
40 | 40 | ||
41 | # .gir files go to dev package, as they're needed for developing (but not for | 41 | # .gir files go to dev package, as they're needed for developing (but not for |
42 | # running) things that depends on introspection. | 42 | # running) things that depends on introspection. |
43 | FILES_${PN}-dev_append = " ${datadir}/gir-*/*.gir" | 43 | FILES_${PN}-dev_append = " ${datadir}/gir-*/*.gir ${libdir}/gir-*/*.gir" |