debian: Merged Debian specific changes from official Debian VCS

git-svn-id: trunk@43934 -
This commit is contained in:
mattias 2014-02-07 11:27:49 +00:00
parent 52c422b4ef
commit 15af867e33
2 changed files with 17 additions and 0 deletions

1
.gitattributes vendored
View File

@ -3759,6 +3759,7 @@ debian/lcl-utils.install.in svneol=native#text/plain
debian/lcl-utils.links.in svneol=native#text/plain
debian/lcl-utils.manpages.in svneol=native#text/plain
debian/lcl-utils.postinst.in svneol=native#text/plain
debian/lcl-utils.postrm.in svneol=native#text/plain
debian/lcl-utils.prerm.in svneol=native#text/plain
debian/lcl-utils.templates.in svneol=native#text/plain
debian/orig-tar.sh svneol=native#text/plain

16
debian/lcl-utils.postrm.in vendored Normal file
View File

@ -0,0 +1,16 @@
#! /bin/sh
set -e
ACTION=$1
CFG_FILE="/etc/lazarus-${VERSION}"
# Debhelper code
#DEBHELPER#
if test "${ACTION}" = "purge"
then
rm -rf "${CFG_FILE}".cfg
rm -rf "${CFG_FILE}".bak
fi