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 016C4138350 for ; Sun, 16 Feb 2020 18:49:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17E9DE0867; Sun, 16 Feb 2020 18:49:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D282CE0867 for ; Sun, 16 Feb 2020 18:49:51 +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 984EE34DD87 for ; Sun, 16 Feb 2020 18:49:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D37F132 for ; Sun, 16 Feb 2020 18:49:48 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1581878948.f6535447bf36d84c5a6bd7187201ec401bbee4d3.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/aften/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/aften/aften-0.0.8-r2.ebuild X-VCS-Directories: media-libs/aften/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f6535447bf36d84c5a6bd7187201ec401bbee4d3 X-VCS-Branch: master Date: Sun, 16 Feb 2020 18:49:48 +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: 29301aad-ea89-44bb-a59d-9fc1d96de338 X-Archives-Hash: ae0ca4858c49159c794d5c3b235a662b commit: f6535447bf36d84c5a6bd7187201ec401bbee4d3 Author: Julius Putra Tanu Setiaji gmail com> AuthorDate: Tue Jan 28 18:46:31 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 16 18:49:08 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6535447 media-libs/aften: Fix src_install crashing on Gentoo Prefix Closes: https://bugs.gentoo.org/706814 Signed-off-by: Julius Putra Tanu Setiaji gmail.com> Package-Manager: Portage-2.3.85, Repoman-2.3.20 Closes: https://github.com/gentoo/gentoo/pull/14489 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/aften/aften-0.0.8-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/aften/aften-0.0.8-r2.ebuild b/media-libs/aften/aften-0.0.8-r2.ebuild index cb3a41a3829..f1dd9d2fa9e 100644 --- a/media-libs/aften/aften-0.0.8-r2.ebuild +++ b/media-libs/aften/aften-0.0.8-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -32,5 +32,5 @@ src_install() { cmake-utils_src_install dodoc README Changelog # File collision with media-sound/wavbreaker, upstream informed - mv "${D}"/usr/bin/wavinfo{,-aften} || die + mv "${ED}"/usr/bin/wavinfo{,-aften} || die }