File: cdargs.emacsen-remove

package info (click to toggle)
cdargs 1.29-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 484 kB
  • ctags: 103
  • sloc: sh: 2,954; cpp: 1,171; makefile: 72; lisp: 70; csh: 3
file content (11 lines) | stat: -rw-r--r-- 254 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -eu

FLAVOR="$1"
echo "remove/cdargs: Handling removal of emacsen flavor $FLAVOR"

if [ "$FLAVOR" != emacs ]
then
    echo "remove/cdargs: purging byte-compiled files for ${FLAVOR}"
    rm -f "/usr/share/$FLAVOR/site-lisp/cdargs.elc"
fi
exit 0