Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/jo/
Date: Thu, 04 Jun 2020 06:33:37
Message-Id: 1591252398.bb5e17c89de66a17f1ae5b18e971ff13c86195e2.mattst88@gentoo
1 commit: bb5e17c89de66a17f1ae5b18e971ff13c86195e2
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 4 06:31:24 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 4 06:33:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb5e17c8
7
8 app-text/jo: Fix DoublePrefixInPath warning
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 app-text/jo/jo-1.3.ebuild | 2 +-
13 app-text/jo/jo-99999.ebuild | 2 +-
14 2 files changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/app-text/jo/jo-1.3.ebuild b/app-text/jo/jo-1.3.ebuild
17 index 432c8d4358b..d2d6974384b 100644
18 --- a/app-text/jo/jo-1.3.ebuild
19 +++ b/app-text/jo/jo-1.3.ebuild
20 @@ -19,5 +19,5 @@ src_configure() {
21
22 src_install() {
23 default
24 - mv "${ED}/$(get_bashcompdir)"/jo{.bash,} || die
25 + mv $(get_bashcompdir)/jo{.bash,} || die
26 }
27
28 diff --git a/app-text/jo/jo-99999.ebuild b/app-text/jo/jo-99999.ebuild
29 index 430a4993680..06279f5b7cd 100644
30 --- a/app-text/jo/jo-99999.ebuild
31 +++ b/app-text/jo/jo-99999.ebuild
32 @@ -24,5 +24,5 @@ src_configure() {
33
34 src_install() {
35 default
36 - mv "${ED}/$(get_bashcompdir)"/jo{.bash,} || die
37 + mv $(get_bashcompdir)/jo{.bash,} || die
38 }