~ubuntu-branches/ubuntu/trusty/pylint/trusty

« back to all changes in this revision

Viewing changes to debian/pylint-common.emacsen-remove

  • Committer: Bazaar Package Importer
  • Author(s): Sylvain Thénault
  • Date: 2006-09-25 16:46:40 UTC
  • mfrom: (1.2.1 upstream) (2.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20060925164640-obkb6g34gqtyk20n
new uptream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
 
3
 
FLAVOR=$1
4
 
PACKAGE=pylint-common
5
 
 
6
 
if [ ${FLAVOR} != emacs ]; then
7
 
    if test -x /usr/sbin/install-info-altdir; then
8
 
        echo remove/${PACKAGE}: removing Info links for ${FLAVOR}
9
 
        install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/info/${PACKAGE}.info.gz
10
 
    fi
11
 
 
12
 
    echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
13
 
    rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
14
 
fi