blob: 1f8b6a46c7afb9075449edff3c8b8c956487b49b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
set -e
if [ "${BASEDIR:=/}" = "/" ]; then
BASEDIR=""
fi
case "$1" in
upgrade) ;;
remove|failed-upgrade|deconfigure)
update-alternatives --remove moc "/usr/bin/tqmoc"
update-alternatives --remove uic "/usr/bin/tquic"
update-alternatives --remove lupdate "/usr/bin/tqlupdate"
update-alternatives --remove lrelease "/usr/bin/tqlrelease"
update-alternatives --remove qmake "/usr/bin/tqmake"
;;
esac
#DEBHELPER#
|