blob: 322317d6f48349e538785d0afa4f6ee9c14c5d79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
## arg 1: the new package version
post_install() {
echo "Intel-MKL: To configure the mkl thread number edit: /etc/intel-mkl-th.conf"
echo "for more details visit: http://software.intel.com/sites/products/documentation/hpc/mkl/lin/MKL_UG_managing_performance/Using_Additional_Threading_Control.htm"
ldconfig ;
}
post_upgrade() {
post_install $1
}
## arg 1: the old package version
post_remove() {
ldconfig ;
}
# vim:set ts=2 sw=2 et:
|