[Debian-tex-commits] SVN tex-common commit + diffs: r3485 - tex-common/trunk/debian
Norbert Preining
preining at alioth.debian.org
Sun Jul 27 18:16:23 UTC 2008
Author: preining
Date: 2008-07-27 18:16:23 +0000 (Sun, 27 Jul 2008)
New Revision: 3485
Modified:
tex-common/trunk/debian/changelog
tex-common/trunk/debian/postrm.functions
Log:
same local keyword fix for trunk
Modified: tex-common/trunk/debian/changelog
===================================================================
--- tex-common/trunk/debian/changelog 2008-07-27 18:15:08 UTC (rev 3484)
+++ tex-common/trunk/debian/changelog 2008-07-27 18:16:23 UTC (rev 3485)
@@ -1,8 +1,9 @@
tex-common (1.13~1) experimental; urgency=low
* bump standards version to 3.8.0, no changes necessary [np]
+ * use the local keyword in policy compliant way [np]
- -- Norbert Preining <preining at debian.org> Sun, 27 Jul 2008 20:06:57 +0200
+ -- Norbert Preining <preining at debian.org> Sun, 27 Jul 2008 20:15:52 +0200
tex-common (1.12) experimental; urgency=low
Modified: tex-common/trunk/debian/postrm.functions
===================================================================
--- tex-common/trunk/debian/postrm.functions 2008-07-27 18:15:08 UTC (rev 3484)
+++ tex-common/trunk/debian/postrm.functions 2008-07-27 18:16:23 UTC (rev 3485)
@@ -3,14 +3,16 @@
#################################################################
purge_file () {
- local conffile="$1"
+ local conffile
+ conffile="$1"
for ext in $PURGE_EXTENSIONS; do
rm -f "${conffile}.${ext}"
done
rm -f "${conffile}"
}
purge_ucf_file () {
- local conffile="$1"
+ local conffile
+ conffile="$1"
purge_file $conffile
if [ -x /usr/bin/ucf ]; then
ucf --purge "${conffile}"
More information about the Debian-tex-commits
mailing list