blob: fda817101e0c6b8fb9309a678edf90c2f727bff4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# arg 1: the new package version
post_install() {
echo " *** Documentation installed at /opt/mpich/share/doc/mpich/install.pdf"
echo " *** /opt/mpich/bin is appended to PATH, see /etc/profile.d/mpich.sh"
echo " *** Some binary names match those of OpenMPI located in /usr (if installed)"
/bin/true
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install $1
}
|