LAPACK  3.5.0
LAPACK: Linear Algebra PACKage
 All Classes Files Functions Variables Typedefs Macros
liblapack3gf.prerm
Go to the documentation of this file.
1 #! /bin/sh
2 
3 set -e
4 
5 if [ "$1" = "upgrade" ]
6 then
7 # Remove the old declaration
8  update-alternatives --display liblapack.so.3gf >/dev/null 2>&1 && update-alternatives --remove-all liblapack.so.3gf
9 fi
10 
11 if [ "$1" != "upgrade" ]
12 then
13 # For the transition liblapack3gf => liblapack3
14  update-alternatives --remove liblapack.so.3gf /usr/lib/liblapack/liblapack.so.3
15 fi
16 
17 #DEBHELPER#
18 
19 exit 0
20 
21