From: Hongxu Jia Date: Tue, 16 Oct 2018 07:34:56 +0000 (-0700) Subject: gobject-introspection.bbclass: fix gir installed but not shipped in any package while... X-Git-Tag: uninative-2.3~56 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e0cc1dc6f1c14babe29a29a7211dc1c69d782b95;p=openembedded-core.git 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. Signed-off-by: Hongxu Jia Signed-off-by: Richard Purdie --- 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" # .gir files go to dev package, as they're needed for developing (but not for # running) things that depends on introspection. -FILES_${PN}-dev_append = " ${datadir}/gir-*/*.gir" +FILES_${PN}-dev_append = " ${datadir}/gir-*/*.gir ${libdir}/gir-*/*.gir"