diff options
author | Justin Bronder <jsbronder@gentoo.org> | 2019-04-22 11:06:09 -0400 |
---|---|---|
committer | Justin Bronder <jsbronder@gentoo.org> | 2019-04-22 11:06:35 -0400 |
commit | b6e388dd555ed9b0dc6425337775042b6a0698e8 (patch) | |
tree | 8ac00d78f1b3511e33cac70b7b7279537fb220ed /sys-cluster | |
parent | app-emulation/lxc: Fix init.d (diff) | |
download | gentoo-b6e388dd555ed9b0dc6425337775042b6a0698e8.tar.gz gentoo-b6e388dd555ed9b0dc6425337775042b6a0698e8.tar.bz2 gentoo-b6e388dd555ed9b0dc6425337775042b6a0698e8.zip |
sys-cluster/openmpi: fix eapi bump bug
b394fd7a7350a215a2a935d3ddea5cb7af82e838 bumped the EAPI to 7 but didn't
add the trailing slashes for ${ED}. Also, oshfort and shmemfort are no
longer installed unconditionally.
Signed-off-by: Justin Bronder <jsbronder@gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/openmpi/openmpi-4.0.1.ebuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys-cluster/openmpi/openmpi-4.0.1.ebuild b/sys-cluster/openmpi/openmpi-4.0.1.ebuild index 8aca8f380423..93ba73835998 100644 --- a/sys-cluster/openmpi/openmpi-4.0.1.ebuild +++ b/sys-cluster/openmpi/openmpi-4.0.1.ebuild @@ -142,10 +142,8 @@ multilib_src_install() { else # some fortran files get installed unconditionally rm \ - "${ED}"usr/include/mpif* \ - "${ED}"usr/bin/mpif* \ - "${ED}"usr/bin/oshfort \ - "${ED}"usr/bin/shmemfort \ + "${ED}"/usr/include/mpif* \ + "${ED}"/usr/bin/mpif* \ || die fi } |