File: remove

package info (click to toggle)
debview 1.4-6
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 76 kB
  • ctags: 15
  • sloc: lisp: 212; sh: 65; makefile: 20
file content (13 lines) | stat: -rwxr-xr-x 380 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# /usr/lib/emacsen-common/packages/remove/debview
# [ This particular script hasn't been tested either, so be careful. ]
set -e

FLAVOR=$1
echo remove/debview: Handling removal of emacsen flavor ${FLAVOR}

if [ ${FLAVOR} != emacs ]; then
    echo emacsen-common: purging byte-compiled files for ${FLAVOR}
    rm -f /usr/share/${FLAVOR}/site-lisp/debview/*.elc
fi
exit 0