[Pkg-tcltk-commits] r824 - tk8.3/trunk/debian
sgolovan-guest at alioth.debian.org
sgolovan-guest at alioth.debian.org
Sun Mar 1 10:07:42 UTC 2009
Author: sgolovan-guest
Date: 2009-03-01 10:07:42 +0000 (Sun, 01 Mar 2009)
New Revision: 824
Modified:
tk8.3/trunk/debian/changelog
tk8.3/trunk/debian/tk8.3.prerm
Log:
[tk8.3]
* Don't remove wish alternative in case of package upgrade because the
manually installed alternative is also removed which isn't desirable.
Modified: tk8.3/trunk/debian/changelog
===================================================================
--- tk8.3/trunk/debian/changelog 2009-03-01 09:15:51 UTC (rev 823)
+++ tk8.3/trunk/debian/changelog 2009-03-01 10:07:42 UTC (rev 824)
@@ -1,8 +1,9 @@
-tk8.3 (8.3.5-15) UNRELEASED; urgency=low
+tk8.3 (8.3.5-15) unstable; urgency=low
- * NOT RELEASED YET
+ * Don't remove wish alternative in case of package upgrade because the
+ manually installed alternative is also removed which isn't desirable.
- -- Sergei Golovan <sgolovan at debian.org> Tue, 15 Jul 2008 21:08:09 +0400
+ -- Sergei Golovan <sgolovan at debian.org> Sun, 01 Mar 2009 10:37:35 +0300
tk8.3 (8.3.5-14) unstable; urgency=low
Modified: tk8.3/trunk/debian/tk8.3.prerm
===================================================================
--- tk8.3/trunk/debian/tk8.3.prerm 2009-03-01 09:15:51 UTC (rev 823)
+++ tk8.3/trunk/debian/tk8.3.prerm 2009-03-01 10:07:42 UTC (rev 824)
@@ -2,6 +2,8 @@
set -e
-update-alternatives --remove wish /usr/bin/wish8.3
+if [ $1 != "upgrade" ] ; then
+ update-alternatives --remove wish /usr/bin/wish8.3
+fi
#DEBHELPER#
More information about the Pkg-tcltk-commits
mailing list