aboutsummaryrefslogtreecommitdiffstats
path: root/packages/all-poky-linux/sato-icon-theme/sato-icon-theme/latest.pkg_postrm
blob: 2bce9717e80d8f7b8c57df5f345a936664e3be3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e
if [ "x$D" != "x" ]; then
	$INTERCEPT_DIR/postinst_intercept update_gtk_icon_cache sato-icon-theme \
		mlprefix= \
		libdir=/usr/lib
else
	for icondir in /usr/share/icons/* ; do
		if [ -d $icondir ] ; then
			gtk-update-icon-cache-3.0 -qt  $icondir
		fi
	done
fi