From: Justin Bronder Date: Mon, 22 Apr 2019 15:06:09 +0000 (-0400) Subject: sys-cluster/openmpi: fix eapi bump bug X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b6e388dd555ed9b0dc6425337775042b6a0698e8;p=gentoo.git 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 Package-Manager: Portage-2.3.62, Repoman-2.3.11 --- 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 }