1#!/bin/sh 2# 3# SPDX-License-Identifier: MIT 4# 5# Post-install intercept for gtk-icon-cache.bbclass 6 7set -e 8 9# Update native pixbuf loaders 10$STAGING_DIR_NATIVE/${libdir_native}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders --update-cache 11 12for icondir in $D/usr/share/icons/*/ ; do 13 if [ -d $icondir ] ; then 14 gtk-update-icon-cache -fqt $icondir 15 fi 16done 17 18