summaryrefslogtreecommitdiffstats
path: root/xulrunner/installer/debian/prerm.in
blob: 1d46d382c35eda23018ac78d9adb378e7a9d8a63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#literal #! /bin/sh
#filter substitution
# prerm script for moz
#
# see: dh_installdeb(1)

set -e

case "$1" in
    remove|upgrade|deconfigure)
    ;;

    failed-upgrade)
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

#ifdef MOZ_WIDGET_GTK
gtk-update-icon-cache /usr/share/icons/hicolor
#endif


exit 0