~ubuntu-branches/ubuntu/hardy/uim/hardy

« back to all changes in this revision

Viewing changes to debian/uim-skk.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2006-07-06 22:17:24 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060706221724-6sobw1fcsxj647hp
Tags: 1:1.1.0-1.2
* Non-maintainer upload.
* Added -Wno-cast-align to CFLAGS, as per the RM's recommendations:

  < vorlon> Sesse: -Wno-cast-align and to hell with it :P

  Really fixes FTBFS. (Really Closes: #375081)

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/uim_skk
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