~ubuntu-branches/ubuntu/saucy/bc/saucy

« back to all changes in this revision

Viewing changes to debian/dc.prerm

  • Committer: Bazaar Package Importer
  • Author(s): John G. Hasler
  • Date: 2009-10-15 12:17:23 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091015121723-m7ve86o6ys2ud0eg
Tags: 1.06.95-2
Fixed errors in debian/rules that prevented info files from
being correctly generated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
#
3
 
# This is the prerm script for the Debian GNU/Linux dc package
4
 
#
5
 
# Written by Dirk Eddelbuettel <edd@debian.org>   
6
 
# Previous versions written by Bill Mitchell, Austin Donnelly and James Troup
7
 
 
8
 
set -e
9
 
 
10
 
#DEBHELPER#
11
 
 
12
 
case "$1" in
13
 
remove|upgrade|failed-upgrade|deconfigure)
14
 
        install-info --quiet --remove dc
15
 
        ;;
16
 
*)
17
 
        echo "prerm called with unknown argument \`$1'" >&2
18
 
        ;;
19
 
 
20
 
esac