aboutsummaryrefslogtreecommitdiffstats
path: root/meta-gnome
diff options
context:
space:
mode:
authorlumag <dbaryshkov@gmail.com>2011-09-19 06:11:17 +0000
committerKoen Kooi <koen@dominion.thruhere.net>2011-09-19 08:20:44 +0200
commite50b52752d208ae3805bde10dc97e4892a563fd4 (patch)
treeedb0c9dd0130d6746a3cf3f33ca31ac32c354bea /meta-gnome
parent257eb6881555c4bef6395671707fb454616ccf7f (diff)
downloadmeta-openembedded-contrib-e50b52752d208ae3805bde10dc97e4892a563fd4.tar.gz
gconf: fix the "unshipped files" warnings
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 <dbaryshkov@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-gnome')
-rw-r--r--meta-gnome/recipes-gnome/gconf/gconf_2.32.4.bb6
1 files changed, 4 insertions, 2 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 1d5a8575e4..d9273272e1 100644
--- a/meta-gnome/recipes-gnome/gconf/gconf_2.32.4.bb
+++ b/meta-gnome/recipes-gnome/gconf/gconf_2.32.4.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "GNOME configuration database system"
SECTION = "x11/gnome"
DEPENDS = "gobject-introspection-native gtk+ orbit2 glib-2.0 libxml2 polkit"
-PR = "r4"
+PR = "r5"
LICENSE = "LGPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605"
@@ -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"