14 lines
273 B
Plaintext
14 lines
273 B
Plaintext
|
#!/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
|
||
|
|