[subversion-commit] SVN tex-common commit + diffs: r1439 - in
tex-common/trunk: debian scripts
Florent Rougon
frn at costa.debian.org
Sun Jun 18 16:40:30 UTC 2006
Author: frn
Date: 2006-06-18 16:40:28 +0000 (Sun, 18 Jun 2006)
New Revision: 1439
Modified:
tex-common/trunk/debian/changelog
tex-common/trunk/scripts/postrm-tex
Log:
dhit_check_run_without_errors() in postrm-tex was not completely silent
even if called with -silent (outputing 3 ugly lines starting with a space
followed by "done."). This is now fixed.
Modified: tex-common/trunk/debian/changelog
===================================================================
--- tex-common/trunk/debian/changelog 2006-06-17 20:00:56 UTC (rev 1438)
+++ tex-common/trunk/debian/changelog 2006-06-18 16:40:28 UTC (rev 1439)
@@ -3,6 +3,10 @@
* Updated debconf translations:
- French, thanks to Steve <dlist at bluewin.ch> (closes: #369360)
+ * dhit_check_run_without_errors() in postrm-tex was not completely silent
+ even if called with -silent (outputing 3 ugly lines starting with a space
+ followed by "done."). This is now fixed. [florent]
+
-- Frank Küster <frank at debian.org> Mon, 29 May 2006 13:35:04 +0200
tex-common (0.23) unstable; urgency=low
Modified: tex-common/trunk/scripts/postrm-tex
===================================================================
--- tex-common/trunk/scripts/postrm-tex 2006-06-17 20:00:56 UTC (rev 1438)
+++ tex-common/trunk/scripts/postrm-tex 2006-06-18 16:40:28 UTC (rev 1439)
@@ -40,12 +40,13 @@
set +e
if "$@" > $tempfile 2>&1 ; then
rm -f $tempfile
- echo " done."
+ [ $silent = 0 ] && echo " done."
else
echo
echo "$* failed. Output has been stored in"
echo "$tempfile"
- echo "If tex-common is not configured you can ignore this error message!"
+ echo "If tex-common is not configured you can ignore this error" \
+ "message!"
echo "Otherwise, please include this file if you report a bug."
echo
fi
More information about the Pkg-tetex-commits
mailing list