~akopytov/percona-xtrabackup/bug1002688-2.1

« back to all changes in this revision

Viewing changes to utils/debian/emacsen-remove.ex

  • Committer: Alexey Kopytov
  • Date: 2012-05-14 15:31:43 UTC
  • mfrom: (391.1.33 staging)
  • Revision ID: akopytov@gmail.com-20120514153143-i06vj6orpdwh9qb8
Manual merge from trunk.

Show diffs side-by-side

added added

removed removed

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