You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
449 B
20 lines
449 B
#!/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#
|