~ubuntu-branches/ubuntu/intrepid/belocs-locales-bin/intrepid

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Bazaar Package Importer
  • Author(s): Jeff Bailey
  • Date: 2006-06-21 18:59:08 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060621185908-ndm8rlsnpfqy77kz
Tags: 2.4-1ubuntu1
* Merge changes from Debian.

* Preserve behaviour of current belocs-locales-bin in Ubuntu.
  We don't use this package for setting up locales, we only use the
  binaries.

* Set default locales magic to 20051014

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -e
 
3
 
 
4
# Ubuntu change: We don't fiddle locale-archive with this.
 
5
exit 0
 
6
 
 
7
case "$1" in
 
8
    remove)
 
9
        rm -f /usr/lib/locale/locale-archive
 
10
        ;;
 
11
    *)
 
12
        ;;
 
13
esac
 
14
 
 
15
#DEBHELPER#
 
16
 
 
17
exit 0