From patchwork Sun Sep 18 11:53:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [meta-oe,2/2] gconf: fix the "unshipped files" warnings Date: Sun, 18 Sep 2011 11:53:53 -0000 From: lumag X-Patchwork-Id: 11661 Message-Id: <1316346834-11051-2-git-send-email-dbaryshkov@gmail.com> To: openembedded-devel@lists.openembedded.org Cc: Dmitry Eremin-Solenikov 1) correct static libs removal in do_install_append 2) provide .la files in -dev package as it's usually done in other packages. Signed-off-by: Dmitry Eremin-Solenikov --- meta-gnome/recipes-gnome/gconf/gconf_2.32.4.bb | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta-gnome/recipes-gnome/gconf/gconf_2.32.4.bb b/meta-gnome/recipes-gnome/gconf/gconf_2.32.4.bb index 1d5a857..3745bc6 100644 --- a/meta-gnome/recipes-gnome/gconf/gconf_2.32.4.bb +++ b/meta-gnome/recipes-gnome/gconf/gconf_2.32.4.bb @@ -30,6 +30,7 @@ do_install_append() { # this stuff is unusable rm ${D}${libdir}/GConf/*/*.*a + rm ${D}${libdir}/gio/*/*.*a } RDEPENDS_${PN} += "dbus-x11" @@ -41,4 +42,5 @@ FILES_${PN} += "${libdir}/GConf/* \ " FILES_${PN}-dbg += "${libdir}/*/*/.debug" -FILES_${PN}-dev += "${datadir}/sgml/gconf/gconf-1.0.dtd" +FILES_${PN}-dev += "${datadir}/sgml/gconf/gconf-1.0.dtd \ + ${libdir}/*/gio/*/*.la"