Initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
|
||||
Reference in New Issue
Block a user