summarylogtreecommitdiffstats
path: root/intel-composer.install
blob: 00e2eeaf2a768585750a9d92ade6f13d073ef1b2 (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-Compiler-Base: Please remember to put your Intel license file in"
   echo "/opt/intel/licenses/ (system-wide) or in ~/intel/licenses/ (user-specific)"

   ldconfig ;
}

post_upgrade() {
   ldconfig ;
}

## arg 1:  the old package version
post_remove() {
   ldconfig ;
}

# vim:set ts=2 sw=2 et: