r45111 - in /packages/atlas/trunk/debian: changelog libatlas3-base.prerm
sebastien-guest at users.alioth.debian.org
sebastien-guest at users.alioth.debian.org
Sun Jun 24 16:12:42 UTC 2012
Author: sebastien-guest
Date: Sun Jun 24 16:12:41 2012
New Revision: 45111
URL: http://svn.debian.org/wsvn/debian-science/?sc=1&rev=45111
Log:
libatlas3-base.prerm: avoid crash if libblas.so.3gf or liblapack.so.3gf already deleted
Modified:
packages/atlas/trunk/debian/changelog
packages/atlas/trunk/debian/libatlas3-base.prerm
Modified: packages/atlas/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-science/packages/atlas/trunk/debian/changelog?rev=45111&op=diff
==============================================================================
--- packages/atlas/trunk/debian/changelog (original)
+++ packages/atlas/trunk/debian/changelog Sun Jun 24 16:12:41 2012
@@ -1,3 +1,10 @@
+atlas (3.8.4-8) UNRELEASED; urgency=low
+
+ * libatlas3-base.prerm: avoid crash if libblas.so.3gf or liblapack.so.3gf
+ already deleted
+
+ -- Sébastien Villemot <sebastien.villemot at ens.fr> Sun, 24 Jun 2012 15:36:49 +0000
+
atlas (3.8.4-7) unstable; urgency=low
* Force generic x86 CPU when building a non-custom package on an x86 arch
Modified: packages/atlas/trunk/debian/libatlas3-base.prerm
URL: http://svn.debian.org/wsvn/debian-science/packages/atlas/trunk/debian/libatlas3-base.prerm?rev=45111&op=diff
==============================================================================
--- packages/atlas/trunk/debian/libatlas3-base.prerm (original)
+++ packages/atlas/trunk/debian/libatlas3-base.prerm Sun Jun 24 16:12:41 2012
@@ -5,8 +5,8 @@
if [ "$1" = "upgrade" ]
then
# Clean up the old declarations
- update-alternatives --remove-all libblas.so.3gf
- update-alternatives --remove-all liblapack.so.3gf
+ update-alternatives --display libblas.so.3gf >/dev/null 2>&1 && update-alternatives --remove-all libblas.so.3gf
+ update-alternatives --display liblapack.so.3gf >/dev/null 2>&1 && update-alternatives --remove-all liblapack.so.3gf
fi
if [ "$1" != "upgrade" ]
More information about the debian-science-commits
mailing list