diff options
author | Brian Nelson <pyro@debian.org> | 2005-07-06 06:58:25 +0000 |
---|---|---|
committer | Brian Nelson <pyro@debian.org> | 2005-07-06 06:58:25 +0000 |
commit | 7438d1113b008242033fd64a0d947beab5c94a3b (patch) | |
tree | 80d4449fd17b17bbc2162fbba42ceae282265020 /debian/qt4-dev-tools.prerm | |
download | qt4-x11-7438d1113b008242033fd64a0d947beab5c94a3b.tar.gz |
importing initial qt4 packaging
Diffstat (limited to 'debian/qt4-dev-tools.prerm')
-rw-r--r-- | debian/qt4-dev-tools.prerm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/debian/qt4-dev-tools.prerm b/debian/qt4-dev-tools.prerm new file mode 100644 index 0000000..009e9a3 --- /dev/null +++ b/debian/qt4-dev-tools.prerm @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +case "$1" in + upgrade) ;; + remove|failed-upgrade|deconfigure) + update-alternatives --remove assistant "/usr/bin/assistant-qt4" + update-alternatives --remove designer "/usr/bin/designer-qt4" + update-alternatives --remove linguist "/usr/bin/linguist-qt4" + ;; +esac + +#DEBHELPER# |