summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorZhai Edwin <edwin.zhai@intel.com>2011-03-03 19:54:09 +0800
committerSaul Wold <sgw@linux.intel.com>2011-03-03 16:33:58 -0800
commit39c4f1f7c51f93594120030c167f3855e4dc4530 (patch)
tree4452be6e03e1f32b6dcecbcc74222b1dd58af086 /meta
parent50a7f8483a76a18576e3ca27790707c62cfefc71 (diff)
downloadpoky-39c4f1f7c51f93594120030c167f3855e4dc4530.tar.gz
sato-icon-theme: Explictly use "Sato" as gtk icon theme
There is a tricky race condition that "Sato" icons got missing on matchbox-desktop as low priority "hicolor" theme was chosen. Explictly settting "Sato" in gtk config file to avoid this. [BUGID #456] got fixed. (From OE-Core rev: 06cf0e5fc4acf00738f5d2aaa505fbac665dca02) Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc b/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc
index a1669c6f2e..3ee76efdea 100644
--- a/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc
+++ b/meta/recipes-sato/sato-icon-theme/sato-icon-theme.inc
@@ -16,9 +16,12 @@ PACKAGE_ARCH = "all"
16 16
17EXTRA_OECONF += "--with-iconmap=${STAGING_LIBDIR_NATIVE}/../libexec/icon-name-mapping" 17EXTRA_OECONF += "--with-iconmap=${STAGING_LIBDIR_NATIVE}/../libexec/icon-name-mapping"
18 18
19#explictly setting "Sato" as default icon theme to avoid icon missing due to
20#tricky race condition
19pkg_postinst_${PN} () { 21pkg_postinst_${PN} () {
20 if [ "x$D" != "x" ]; then 22 if [ "x$D" != "x" ]; then
21 exit 1 23 exit 1
22 fi 24 fi
23 gtk-update-icon-cache -q /usr/share/icons/Sato 25 gtk-update-icon-cache -q /usr/share/icons/Sato
26 echo 'gtk-icon-theme-name = "Sato"' > /etc/gtk-2.0/gtkrc
24} 27}