From: Hongxu Jia Date: Thu, 17 Jan 2013 12:56:37 +0000 (+0800) Subject: gtk-icon-cache.bbclass:fix support postrm at image creation time X-Git-Tag: rev_ivi_2015_02_04~14047 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a6d495018f1e21e741a8ae6bda115e6c32ac565e;p=scm%2Fbb%2Ftizen-distro.git gtk-icon-cache.bbclass:fix support postrm at image creation time When use postrm on the build machine, it installs the hook in intercept-scripts directory and exit 0, the hook will be later invoked and it will properly call gtk-update-icon-cache. [YOCTO #3633] (From OE-Core rev: 6ae0b8339134300d0c179bd47dc3062e0e1f2f0b) Signed-off-by: Hongxu Jia Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/classes/gtk-icon-cache.bbclass b/meta/classes/gtk-icon-cache.bbclass index 7c7dd78..d5fdcd5 100644 --- a/meta/classes/gtk-icon-cache.bbclass +++ b/meta/classes/gtk-icon-cache.bbclass @@ -32,6 +32,24 @@ done } gtk_icon_cache_postrm() { +if [ "x$D" != "x" ]; then + if [ ! -f $INTERCEPT_DIR/update_icon_cache ]; then + cat << "EOF" > $INTERCEPT_DIR/update_icon_cache +#!/bin/sh + +# update native pixbuf loaders +gdk-pixbuf-query-loaders --update-cache + +for icondir in $D/usr/share/icons/*/ ; do + if [ -d $icondir ] ; then + gtk-update-icon-cache -fqt $icondir + fi +done +EOF + fi + exit 0 +fi + for icondir in /usr/share/icons/* ; do if [ -d $icondir ] ; then gtk-update-icon-cache -qt $icondir