summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/images/core-image-directfb.bb
AgeCommit message (Expand)Author
2016-07-10remove core-image-directfb.bbMaxin B. John
2016-05-11Drop unneeded LIC_FILES_CHKSUM valuesPaul Eggleton
2014-03-07core-image-basic / packagegroup-core-basic: rename to *-full-cmdlinePaul Eggleton
2014-02-20recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issues (part 2)Matthieu Crapet
2014-01-02Update after toplevel LICENSE file checksum changeRichard Purdie
2013-10-30recipes: Remove PR = r0 from all recipesRichard Purdie
2013-09-06core-image-directfb: Use 'distro_features_check' classOtavio Salvador
2013-04-29core-image-directfb: add SUMMARYPaul Eggleton
2013-01-25core-image-gtk-directfb: rename to core-image-directfbConstantin Musca
ue='ChenQi/siteconfig'>ChenQi/siteconfig OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/scripts/postinst-intercepts/update_icon_cache
blob: 9cf2a72a0cf55b943f2b76cbb6594da76c534c62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

# update native pixbuf loaders
$STAGING_DIR_NATIVE/${libdir_native}/gdk-pixbuf-2.0/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