summaryrefslogtreecommitdiffstats
path: root/config.profiles/harmattan/libqt4-dev.prerm
blob: 0a078bec84abe841796f10bfbcd36cde0bb70406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

BINARIES="qmake moc rcc uic"

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

#DEBHELPER#