Files
OpenBMC/poky/scripts/postinst-intercepts/update_gtk_icon_cache
T

18 lines
360 B
Bash
Raw Normal View History

2026-04-23 17:07:55 +08:00
#!/bin/sh
#
# SPDX-License-Identifier: MIT
#
# Post-install intercept for gtk-icon-cache.bbclass
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