1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#! /bin/sh
set -e
# source debconf library
. /usr/share/debconf/confmodule
db_settitle libmkl-rt/title
# potential license violation
db_input critical libmkl-rt/use-as-default-blas-lapack || true
db_go
# select the exact symlinks that should point to MKL. This won't pop up
# if the user rejects to use MKL as default BLAS/LAPACK.
db_get libmkl-rt/use-as-default-blas-lapack
if [ "$RET" = "true" ]; then
db_input high libmkl-rt/exact-so-3-selections || true
db_go
fi
#DEBHELPER#
exit 0
|