summaryrefslogtreecommitdiffstats
path: root/config.profiles/harmattan/qt4-linguist-tools.prerm
blob: 04b51bdf8f59f52e7b49d52466087af6d474ba92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

BINARIES="lrelease"

case "$1" in
    upgrade) ;;
    remove|failed-upgrade|deconfigure)
	for bin in $BINARIES; do
	    rm -f "/usr/bin/${bin}"
	done
        ;;
esac

#DEBHELPER#