diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2013-02-12 18:12:44 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-12 16:35:14 +0000 |
commit | 2d5a935b70218335af4859f409b81769c9238db3 (patch) | |
tree | 347cf07c38cd1907776caaa674a8904b6a370b7e /meta/recipes-gnome/gnome | |
parent | 801ca93cbd3e8fd8ce08f72432b6d4c80ed51261 (diff) | |
download | openembedded-core-2d5a935b70218335af4859f409b81769c9238db3.tar.gz openembedded-core-2d5a935b70218335af4859f409b81769c9238db3.tar.bz2 openembedded-core-2d5a935b70218335af4859f409b81769c9238db3.zip |
gnome-keyring: compile schemas on host
gsettings.bbclass offers just that.
[YOCTO #3854]
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gnome')
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb b/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb index 92e0e1b94e..a1cd8f9a16 100644 --- a/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb +++ b/meta/recipes-gnome/gnome/gnome-keyring_2.32.1.bb @@ -11,9 +11,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ SECTION = "x11/gnome" -PR = "r10" +PR = "r11" -inherit autotools gnome gtk-doc pkgconfig +inherit autotools gnome gtk-doc pkgconfig gsettings DEPENDS = "gtk+ libgcrypt libtasn1 libtasn1-native gconf ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" RDEPENDS_${PN} = "libgnome-keyring glib-2.0-utils" @@ -30,14 +30,6 @@ do_install_append () { install -m 0644 ${WORKDIR}/org.gnome.keyring.service ${D}${datadir}/dbus-1/services } -pkg_postinst_${PN} () { - if [ "x$D" != "x" ]; then - exit 1 - fi - - test -x ${bindir}/glib-compile-schemas && glib-compile-schemas ${datadir}/glib-2.0/schemas -} - FILES_${PN} += "${datadir}/dbus-1/services ${datadir}/gcr" |