#!/bin/sh set -e if [ "x$D" != "x" ]; then $INTERCEPT_DIR/postinst_intercept update_gtk_icon_cache connman-gnome \ 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