diff options
author | Kai Kang <kai.kang@windriver.com> | 2018-10-12 13:47:31 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-12 08:44:02 +0100 |
commit | fa1bad8d96f7f0b8bf5fd2b85ad10b783ff2d303 (patch) | |
tree | b217f3f474778486745366f0f91ead911f060d5c | |
parent | c9169e4d1fa67289d5beb0e1f8fb5c54153c4242 (diff) | |
download | openembedded-core-fa1bad8d96f7f0b8bf5fd2b85ad10b783ff2d303.tar.gz openembedded-core-fa1bad8d96f7f0b8bf5fd2b85ad10b783ff2d303.tar.bz2 openembedded-core-fa1bad8d96f7f0b8bf5fd2b85ad10b783ff2d303.zip |
gobject-introspection: add required python modules to rdepends
It fails to run g-ir-scanner from package gobject-introspection that
missing python modules 'xml' and 'pickle'. Add them to rdepends.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.0.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.0.bb b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.0.bb index de898a788b..2c8cfa6bd9 100644 --- a/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.0.bb +++ b/meta/recipes-gnome/gobject-introspection/gobject-introspection_1.58.0.bb @@ -194,4 +194,6 @@ FILES_${PN}-dev_append = " ${datadir}/gobject-introspection-1.0/tests/*.c \ FILES_${PN}-dbg += "${libdir}/gobject-introspection/giscanner/.debug/" FILES_${PN}-staticdev += "${libdir}/gobject-introspection/giscanner/*.a" +RDEPENDS_${PN} = "python3-pickle python3-xml" + BBCLASSEXTEND = "native" |