~ubuntu-branches/ubuntu/precise/im-switch/precise-updates

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Bazaar Package Importer
  • Author(s): Kenshi Muto
  • Date: 2005-06-17 11:58:42 UTC
  • Revision ID: james.westby@ubuntu.com-20050617115842-wctve6czdep3b8vm
Tags: 1.2
* Modify dependscheck.pl to check libapt-pkg-perl before running.
* Needs -xim instead of +xim for kinput2.
* Replace bashism (xinput.sh). (closes: #316243)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -e
 
3
 
 
4
case "$1" in
 
5
    remove|upgrade|deconfigure)
 
6
        update-alternatives --remove xinput-ja_JP /etc/X11/xinit/xinput.d/none
 
7
        ;;
 
8
    failed-upgrade)
 
9
        ;;
 
10
    *)
 
11
        echo "prerm called with unknown argument \`$1'" >&2
 
12
        exit 1
 
13
    ;;
 
14
esac
 
15
 
 
16
#DEBHELPER#
 
17
 
 
18
exit 0