summaryrefslogtreecommitdiffstats
path: root/ubuntu/lucid_automake/core/kdebase/debian/kwin-kde3.prerm
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-06-06 18:02:00 +0200
committerSlávek Banko <slavek.banko@axis.cz>2021-06-06 18:02:00 +0200
commit1943515ff593d0dddd262789c1c8b2cab2905068 (patch)
tree415795d88e5e40035f6c64d67597d24d36f85cc2 /ubuntu/lucid_automake/core/kdebase/debian/kwin-kde3.prerm
parent303035d797260032395189bdb52b2ecabdf919a9 (diff)
downloadtde-packaging-1943515ff593d0dddd262789c1c8b2cab2905068.tar.gz
tde-packaging-1943515ff593d0dddd262789c1c8b2cab2905068.zip
DEB: Remove obsolete and unused trees for automake builds on Ubuntu.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/lucid_automake/core/kdebase/debian/kwin-kde3.prerm')
-rw-r--r--ubuntu/lucid_automake/core/kdebase/debian/kwin-kde3.prerm44
1 files changed, 0 insertions, 44 deletions
diff --git a/ubuntu/lucid_automake/core/kdebase/debian/kwin-kde3.prerm b/ubuntu/lucid_automake/core/kdebase/debian/kwin-kde3.prerm
deleted file mode 100644
index 5b2603ac0..000000000
--- a/ubuntu/lucid_automake/core/kdebase/debian/kwin-kde3.prerm
+++ /dev/null
@@ -1,44 +0,0 @@
-#! /bin/sh
-# prerm script for konqueror
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-# * <prerm> `remove'
-# * <old-prerm> `upgrade' <new-version>
-# * <new-prerm> `failed-upgrade' <old-version>
-# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
-# * <deconfigured's-prerm> `deconfigure' `in-favour'
-# <package-being-installed> <version> `removing'
-# <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
- remove)
- /usr/sbin/update-alternatives --remove x-window-manager /usr/kde3/bin/kwin
- ;;
-
- upgrade|deconfigure)
- ;;
-
- failed-upgrade)
- ;;
-
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-