summaryrefslogtreecommitdiffstats
path: root/dilos/dependencies/tqt3/debian/tqt3-qtconfig.prerm
blob: 5024559d247768a2511f90e826fd68adc0b1a9a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e
if [ "${BASEDIR:=/}" = "/" ]; then
	BASEDIR=""
fi

case "$1" in
  upgrade) ;;
  remove|failed-upgrade|deconfigure)
    update-alternatives --remove qtconfig "/usr/bin/tqtconfig"
    ;;
esac

#DEBHELPER#