commit: 8716793ec83e6b3dba0c2649187f49406c2c4c02 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org> AuthorDate: Sun Jul 19 10:06:36 2020 +0000 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org> CommitDate: Sun Jul 19 10:15:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8716793e
app-text/jo: Fix bash completions install path Package-Manager: Portage-2.3.103, Repoman-2.3.23 Closes: https://bugs.gentoo.org/show_bug.cgi?id=706768 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org> app-text/jo/jo-1.3.ebuild | 2 +- app-text/jo/jo-99999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-text/jo/jo-1.3.ebuild b/app-text/jo/jo-1.3.ebuild index d2d6974384b..bf84777ca6d 100644 --- a/app-text/jo/jo-1.3.ebuild +++ b/app-text/jo/jo-1.3.ebuild @@ -19,5 +19,5 @@ src_configure() { src_install() { default - mv $(get_bashcompdir)/jo{.bash,} || die + mv "${D}"$(get_bashcompdir)/jo{.bash,} || die } diff --git a/app-text/jo/jo-99999.ebuild b/app-text/jo/jo-99999.ebuild index 06279f5b7cd..098a68881de 100644 --- a/app-text/jo/jo-99999.ebuild +++ b/app-text/jo/jo-99999.ebuild @@ -24,5 +24,5 @@ src_configure() { src_install() { default - mv $(get_bashcompdir)/jo{.bash,} || die + mv "${D}"$(get_bashcompdir)/jo{.bash,} || die }
