From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5C619138359 for ; Sun, 19 Jul 2020 10:15:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F2EBE0815; Sun, 19 Jul 2020 10:15:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 339B6E0815 for ; Sun, 19 Jul 2020 10:15:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C216334EF01 for ; Sun, 19 Jul 2020 10:15:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A4A12DD for ; Sun, 19 Jul 2020 10:15:27 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1595153722.8716793ec83e6b3dba0c2649187f49406c2c4c02.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/jo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/jo/jo-1.3.ebuild app-text/jo/jo-99999.ebuild X-VCS-Directories: app-text/jo/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 8716793ec83e6b3dba0c2649187f49406c2c4c02 X-VCS-Branch: master Date: Sun, 19 Jul 2020 10:15:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 76732e97-f6cc-4389-8b59-144e94836bdf X-Archives-Hash: 69269360f3e0d0506e61cfbfeee5b86d commit: 8716793ec83e6b3dba0c2649187f49406c2c4c02 Author: Jeroen Roovers gentoo org> AuthorDate: Sun Jul 19 10:06:36 2020 +0000 Commit: Jeroen Roovers gentoo 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 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 }