diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2012-08-24 21:29:06 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-25 14:42:37 +0100 |
commit | bab34e5fa734a98cb5199db4ebc95a6634a38431 (patch) | |
tree | ab58fd53e9947d77d0215b0cbd8df40878092eef /meta/recipes-gnome | |
parent | 396af9e2c8a8b7ad8d49566350d79f05898734a7 (diff) | |
download | openembedded-core-bab34e5fa734a98cb5199db4ebc95a6634a38431.tar.gz openembedded-core-bab34e5fa734a98cb5199db4ebc95a6634a38431.tar.bz2 openembedded-core-bab34e5fa734a98cb5199db4ebc95a6634a38431.zip |
gdk-pixbuf: call gtk-update-icon-cache with -t in postinstall script
gtk-update-icon-cache is called for each subdir of ${datadir}/icons,
but there are some themes without an index.theme file such as
xcursor-transparent, so add -t(--ignore-theme-index) option to avoid
errors of gtk-update-icon-cache.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Diffstat (limited to 'meta/recipes-gnome')
-rw-r--r-- | meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb index 159bdae1de..99f6cb4ed0 100644 --- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb +++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb @@ -21,7 +21,7 @@ SRC_URI = "http://ftp.acc.umu.se/pub/GNOME/sources/gdk-pixbuf/2.24/gdk-pixbuf-${ SRC_URI[md5sum] = "72f39b34b20f68148c1609bd27415412" SRC_URI[sha256sum] = "da7a3f00db360913716368e19e336402755cafa93769f3cfa28a969303e4bee1" -PR = "r5" +PR = "r6" inherit autotools pkgconfig gettext @@ -65,7 +65,7 @@ GDK_PIXBUF_MODULEDIR=${libdir}/gdk-pixbuf-2.0/${LIBV}/loaders gdk-pixbuf-query-l if [ -x ${bindir}/gtk-update-icon-cache ] && [ -d ${datadir}/icons ]; then for icondir in /usr/share/icons/*; do if [ -d ${icondir} ]; then - gtk-update-icon-cache -q ${icondir} + gtk-update-icon-cache -t -q ${icondir} fi done fi |