summaryrefslogtreecommitdiffstats
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-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 1d5a8575e..d9273272e 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"
2SECTION = "x11/gnome" 2SECTION = "x11/gnome"
3DEPENDS = "gobject-introspection-native gtk+ orbit2 glib-2.0 libxml2 polkit" 3DEPENDS = "gobject-introspection-native gtk+ orbit2 glib-2.0 libxml2 polkit"
4 4
5PR = "r4" 5PR = "r5"
6 6
7LICENSE = "LGPLv2+" 7LICENSE = "LGPLv2+"
8LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605" 8LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605"
@@ -30,6 +30,7 @@ do_install_append() {
30 30
31 # this stuff is unusable 31 # this stuff is unusable
32 rm ${D}${libdir}/GConf/*/*.*a 32 rm ${D}${libdir}/GConf/*/*.*a
33 rm ${D}${libdir}/gio/*/*.*a
33} 34}
34 35
35RDEPENDS_${PN} += "dbus-x11" 36RDEPENDS_${PN} += "dbus-x11"
@@ -41,4 +42,5 @@ FILES_${PN} += "${libdir}/GConf/* \
41" 42"
42 43
43FILES_${PN}-dbg += "${libdir}/*/*/.debug" 44FILES_${PN}-dbg += "${libdir}/*/*/.debug"
44FILES_${PN}-dev += "${datadir}/sgml/gconf/gconf-1.0.dtd" 45FILES_${PN}-dev += "${datadir}/sgml/gconf/gconf-1.0.dtd \
46 ${libdir}/*/gio/*/*.la"