[Debian-tex-commits] SVN tetex-base commit + diffs: r2103 -
tetex-base/trunk/debian
Frank Küster
frank at alioth.debian.org
Wed Dec 20 15:29:18 CET 2006
Author: frank
Date: 2006-12-20 15:29:18 +0100 (Wed, 20 Dec 2006)
New Revision: 2103
Modified:
tetex-base/trunk/debian/changelog
tetex-base/trunk/debian/tetex-doc.preinst
Log:
Fix a syntax error in the code that removes the obsolete conffile of
tetex-doc. Thanks to Jan H?\195?\131?\197?\146lsbergen <jan-debian at huelsbergen.de> for
report and patch (closes: #403886) [frank]
Modified: tetex-base/trunk/debian/changelog
===================================================================
--- tetex-base/trunk/debian/changelog 2006-12-20 14:26:15 UTC (rev 2102)
+++ tetex-base/trunk/debian/changelog 2006-12-20 14:29:18 UTC (rev 2103)
@@ -1,3 +1,11 @@
+tetex-base (3.0.dfsg.3-5) unstable; urgency=low
+
+ * Fix a syntax error in the code that removes the obsolete conffile of
+ tetex-doc. Thanks to Jan Hülsbergen <jan-debian at huelsbergen.de> for
+ report and patch (closes: #403886) [frank]
+
+ -- Frank Küster <frank at debian.org> Wed, 20 Dec 2006 15:28:45 +0100
+
tetex-base (3.0.dfsg.3-4) unstable; urgency=high
* The "King of QA release"
Modified: tetex-base/trunk/debian/tetex-doc.preinst
===================================================================
--- tetex-base/trunk/debian/tetex-doc.preinst 2006-12-20 14:26:15 UTC (rev 2102)
+++ tetex-base/trunk/debian/tetex-doc.preinst 2006-12-20 14:29:18 UTC (rev 2103)
@@ -5,7 +5,7 @@
install|upgrade)
OLDCONFFILE=/etc/apache2/sites-available/tetex-doc
if [ -f $OLDCONFFILE ]; then
- if [ `md5sum $OLDCONFFILE` = f2b4328c1403ac91f92d8b144c1be7fe ]; then
+ if [ `md5sum $OLDCONFFILE | cut -d' ' -f1` = f2b4328c1403ac91f92d8b144c1be7fe ]; then
rm $OLDCONFFILE
fi
fi
More information about the Debian-tex-commits
mailing list