summaryrefslogtreecommitdiffstats
path: root/ubuntu/_base/dependencies/qt3/debian/qt3-qtconfig.prerm
blob: 3985383b44fb1e315ff9ae2ac1ecc3f8f7e135fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

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

#DEBHELPER#