diff options
author | Steve Sakoman <steve@sakoman.com> | 2012-01-06 20:51:53 -0800 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2012-01-09 21:51:50 -0800 |
commit | b3bb99c6faaf5c1613246309fd05cd95c39c77f4 (patch) | |
tree | 8a5b9fed38324ce8c8b3c87098d16fe95edb174b /meta/classes/gtk-icon-cache.bbclass | |
parent | 7b1e227bf28c9d4f3bb16af4d9ac21265e88a3f1 (diff) | |
download | openembedded-core-b3bb99c6faaf5c1613246309fd05cd95c39c77f4.tar.gz openembedded-core-b3bb99c6faaf5c1613246309fd05cd95c39c77f4.tar.bz2 openembedded-core-b3bb99c6faaf5c1613246309fd05cd95c39c77f4.zip |
gtk-icon-cache.bbclass: add -f option to gtk-update-icon-cache in postinst
The gtk-update-icon-cache utility does not create a cache file if
one does not already exist. Since some packages (notably gnome-icon-theme)
do not ship a cache file by default, the results of the utility are
not saved. Adding the force option writes out the cache even if there
wasn't a default cache in the package.
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/classes/gtk-icon-cache.bbclass')
-rw-r--r-- | meta/classes/gtk-icon-cache.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/gtk-icon-cache.bbclass b/meta/classes/gtk-icon-cache.bbclass index eac3061b0a..0204fd3fec 100644 --- a/meta/classes/gtk-icon-cache.bbclass +++ b/meta/classes/gtk-icon-cache.bbclass @@ -14,7 +14,7 @@ GDK_PIXBUF_MODULEDIR=${libdir}/gdk-pixbuf-2.0/2.10.0/loaders gdk-pixbuf-query-lo for icondir in /usr/share/icons/* ; do if [ -d $icondir ] ; then - gtk-update-icon-cache -qt $icondir + gtk-update-icon-cache -fqt $icondir fi done } |