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