aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/gtk-icon-cache.bbclass
diff options
context:
space:
mode:
authorRoss Burton <ross@openedhand.com>2008-01-08 15:54:04 +0000
committerRoss Burton <ross@openedhand.com>2008-01-08 15:54:04 +0000
commit226212879ce4030b2a213acb559631aeda8b8940 (patch)
treebb111ca6ab34eb49b69f0ce392972b655b10bb03 /meta/classes/gtk-icon-cache.bbclass
parentb8a6dbf08b8fa7659a2a70d83ba9ba3ad3744f03 (diff)
downloadopenembedded-core-226212879ce4030b2a213acb559631aeda8b8940.tar.gz
gtk-icon-cache.bbclass: in the postinst update the pixbuf loaders to ensure that all are loaded before creating icon caches
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3430 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/gtk-icon-cache.bbclass')
-rw-r--r--meta/classes/gtk-icon-cache.bbclass4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/classes/gtk-icon-cache.bbclass b/meta/classes/gtk-icon-cache.bbclass
index b86562890a..0d306a1b84 100644
--- a/meta/classes/gtk-icon-cache.bbclass
+++ b/meta/classes/gtk-icon-cache.bbclass
@@ -7,6 +7,10 @@ gtk-icon-cache_postinst() {
if [ "x$D" != "x" ]; then
exit 1
fi
+
+# Update the pixbuf loaders in case they haven't been registered yet
+gdk-pixbuf-query-loaders > /etc/gtk-2.0/gdk-pixbuf.loaders
+
gtk-update-icon-cache -q /usr/share/icons/hicolor
}