~ubuntu-branches/ubuntu/trusty/exuberant-ctags/trusty

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2004-03-30 11:56:40 UTC
  • Revision ID: james.westby@ubuntu.com-20040330115640-s5ng92j23p7adkiw
Tags: 1:5.5.4-1
* New upstream release.
  - Fixed broken -R option.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
if [ ! \( "$1" = "upgrade" -o "$1" = "remove" \) ]; then
 
6
        exit 0
 
7
fi
 
8
 
 
9
if [ "$1" = "remove" ] ; then
 
10
        for i in ctags etags ; do
 
11
                update-alternatives --remove $i /usr/bin/ctags-exuberant
 
12
        done
 
13
fi
 
14