Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-chemistry/gromacs/
Date: Wed, 02 Oct 2019 22:19:49
Message-Id: 1570054767.c660b3597c9b47d7e8697b1efdc8b409eeab1a65.whissi@gentoo
1 commit: c660b3597c9b47d7e8697b1efdc8b409eeab1a65
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 2 22:19:27 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 2 22:19:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c660b359
7
8 sci-chemistry/gromacs: add missing trailing slashes
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 sci-chemistry/gromacs/gromacs-2019.4.ebuild | 8 ++++----
14 1 file changed, 4 insertions(+), 4 deletions(-)
15
16 diff --git a/sci-chemistry/gromacs/gromacs-2019.4.ebuild b/sci-chemistry/gromacs/gromacs-2019.4.ebuild
17 index 826b0c785a4..07847d417d6 100644
18 --- a/sci-chemistry/gromacs/gromacs-2019.4.ebuild
19 +++ b/sci-chemistry/gromacs/gromacs-2019.4.ebuild
20 @@ -291,14 +291,14 @@ src_install() {
21 doins src/external/tng_io/include/tng/*h
22 fi
23 # drop unneeded stuff
24 - rm "${ED}"usr/bin/GMXRC* || die
25 - for x in "${ED}"usr/bin/gmx-completion-*.bash ; do
26 + rm "${ED}"/usr/bin/GMXRC* || die
27 + for x in "${ED}"/usr/bin/gmx-completion-*.bash ; do
28 local n=${x##*/gmx-completion-}
29 n="${n%.bash}"
30 - cat "${ED}"usr/bin/gmx-completion.bash "$x" > "${T}/${n}" || die
31 + cat "${ED}"/usr/bin/gmx-completion.bash "$x" > "${T}/${n}" || die
32 newbashcomp "${T}"/"${n}" "${n}"
33 done
34 - rm "${ED}"usr/bin/gmx-completion*.bash || die
35 + rm "${ED}"/usr/bin/gmx-completion*.bash || die
36 readme.gentoo_create_doc
37 }