summaryrefslogtreecommitdiff
path: root/debian/cscope.preinst
blob: be518b45e07d80655cb2e4ebd7c83944e6310838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

cleanup_sitestart() {
	if [ -e /etc/emacs/site-start.d/50cscope.el ]; then
		rm -f /etc/emacs/site-start.d/50cscope.el
	fi
}

case "$1" in
	upgrade)
	cleanup_sitestart
	;;

	install|abort-upgrade)
	;;

	*)
	echo "$0 called with unknown argument '$1'" >&2
	exit 1
	;;
esac

#DEBHELPER#
exit 0
th>Jakub Wilk <jwilk@jwilk.net>2015-12-15 12:00:27 +0100 committerJonathan Corbet <corbet@lwn.net>2016-01-25 12:30:18 -0700 commit6ac9937c976443743962cfe7b6893163adadbda5 (patch) tree89cfa61b58d28ab09290ce00bb435b75565b77b5 /Documentation/SubmittingPatches parent92e963f50fc74041b5e9e744c330dca48e04f08d (diff)
SubmittingPatches: fix spelling of "git send-email"
Signed-off-by: Jakub Wilk <jwilk@jwilk.net> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/SubmittingPatches')