[subversion-commit] SVN tetex commit + diffs: r476 -
tex-common/trunk/debian
Frank Küster
frank at costa.debian.org
Thu Jan 26 17:55:55 UTC 2006
Author: frank
Date: 2006-01-26 17:55:50 +0000 (Thu, 26 Jan 2006)
New Revision: 476
Modified:
tex-common/trunk/debian/common.variables
tex-common/trunk/debian/postrm.functions
Log:
consistently use {POST,PRE}INST_MOVE_EXT *without* the separating dot
Modified: tex-common/trunk/debian/common.variables
===================================================================
--- tex-common/trunk/debian/common.variables 2006-01-26 17:54:37 UTC (rev 475)
+++ tex-common/trunk/debian/common.variables 2006-01-26 17:55:50 UTC (rev 476)
@@ -3,8 +3,8 @@
<:# $Id$:>//
<:# this list is from dpkg-1.10.9/include/dpkg.h.in: :>//
<:$DPKG_EXTENSIONS="'~' '%' .bak .dpkg-tmp .dpkg-new .dpkg-old .dpkg-dist":>//
-<:$PREINST_MOVE_EXT=".preinst-bak":>//
-<:$POSTINST_MOVE_EXT=".postinst-bak":>//
+<:$PREINST_MOVE_EXT="preinst-bak":>//
+<:$POSTINST_MOVE_EXT="postinst-bak":>//
<:$PURGE_EXTENSIONS="$DPKG_EXTENSIONS $PREINST_MOVE_EXT $POSTINST_MOVE_EXT":>//
<:# package specific:>//
<:$ETC="/etc/":>//
Modified: tex-common/trunk/debian/postrm.functions
===================================================================
--- tex-common/trunk/debian/postrm.functions 2006-01-26 17:54:37 UTC (rev 475)
+++ tex-common/trunk/debian/postrm.functions 2006-01-26 17:55:50 UTC (rev 476)
@@ -5,7 +5,7 @@
purge_file () {
local conffile="$1"
for ext in $PURGE_EXTENSIONS; do
- rm -f "${conffile}${ext}"
+ rm -f "${conffile}.${ext}"
done
rm -f "${conffile}"
}
More information about the Pkg-tetex-commits
mailing list