diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2013-04-29 16:50:06 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-05-10 11:02:39 +0200 |
commit | f06c454faa2cb798d3ab87ed392d827363022930 (patch) | |
tree | d151654626f33f6b8531f6b1b0a9b8923009aab5 /meta-gnome/recipes-gnome/dconf | |
parent | 55ecab870eee9cde7fb5de4fad086f4a5d14665a (diff) | |
download | meta-openembedded-f06c454faa2cb798d3ab87ed392d827363022930.tar.gz |
dconf: fix/remove postinst by inheriting gsettings
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-gnome/recipes-gnome/dconf')
-rw-r--r-- | meta-gnome/recipes-gnome/dconf/dconf_0.7.5.bb | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/meta-gnome/recipes-gnome/dconf/dconf_0.7.5.bb b/meta-gnome/recipes-gnome/dconf/dconf_0.7.5.bb index ba14e8848..7d11cf810 100644 --- a/meta-gnome/recipes-gnome/dconf/dconf_0.7.5.bb +++ b/meta-gnome/recipes-gnome/dconf/dconf_0.7.5.bb | |||
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" | |||
4 | 4 | ||
5 | SECTION = "x11/gnome" | 5 | SECTION = "x11/gnome" |
6 | 6 | ||
7 | inherit gnome | 7 | inherit gnome gsettings |
8 | SRC_URI[archive.md5sum] = "d784f8afca04473d194a72047595c28e" | 8 | SRC_URI[archive.md5sum] = "d784f8afca04473d194a72047595c28e" |
9 | SRC_URI[archive.sha256sum] = "e2103e8207744903790e9fac6427fa394bb485a0c7f4e0d03b0fb43268c34f33" | 9 | SRC_URI[archive.sha256sum] = "e2103e8207744903790e9fac6427fa394bb485a0c7f4e0d03b0fb43268c34f33" |
10 | 10 | ||
@@ -12,7 +12,7 @@ DEPENDS = "glib-2.0 gtk+3" | |||
12 | 12 | ||
13 | inherit vala | 13 | inherit vala |
14 | 14 | ||
15 | PR = "r1" | 15 | PR = "r2" |
16 | 16 | ||
17 | PACKAGES =+ "dconf-editor" | 17 | PACKAGES =+ "dconf-editor" |
18 | 18 | ||
@@ -21,11 +21,3 @@ FILES_${PN} += "${datadir}/dbus-1/ \ | |||
21 | ${libdir}/gio/modules/*.so \ | 21 | ${libdir}/gio/modules/*.so \ |
22 | " | 22 | " |
23 | FILES_${PN}-dbg += "${libdir}/gio/modules/.debug/libdconfsettings.so" | 23 | FILES_${PN}-dbg += "${libdir}/gio/modules/.debug/libdconfsettings.so" |
24 | |||
25 | pkg_postinst_${PN} () { | ||
26 | if [ -n "$D" ]; then | ||
27 | exit 1 | ||
28 | fi | ||
29 | |||
30 | glib-compile-schemas ${datadir}/glib-2.0/schemas | ||
31 | } | ||