#!/bin/sh -e

# Source debconf module
. /usr/share/debconf/confmodule

# Identifies the point in the file at which debhelper will insert automatically 
# added snippets.
#DEBHELPER#

# An installation process can be roll backed in which case we don't want to do
# anything.
if [ "$1" != configure ]; then
	exit 0
fi

# Make sure the icon cache is deleted and recreated
gtk-update-icon-cache /usr/share/icons/hicolor/
