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 64DCE1382C5 for ; Tue, 9 Mar 2021 17:42:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFA4AE0867; Tue, 9 Mar 2021 17:42:40 +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 96D52E0867 for ; Tue, 9 Mar 2021 17:42:40 +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 90958340BDE for ; Tue, 9 Mar 2021 17:42:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B390A487 for ; Tue, 9 Mar 2021 17:42:37 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1615311749.4bfa2b10bb6bcf4c42cf978dd535c9539a99ad17.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild X-VCS-Directories: media-sound/alsaplayer/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4bfa2b10bb6bcf4c42cf978dd535c9539a99ad17 X-VCS-Branch: master Date: Tue, 9 Mar 2021 17:42:37 +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: ab9ff49f-87bc-4a44-a47d-36dbf7bdbc81 X-Archives-Hash: 6ae0c1142de47e7f4ccc8dc566f5f129 commit: 4bfa2b10bb6bcf4c42cf978dd535c9539a99ad17 Author: Sam James gentoo org> AuthorDate: Tue Mar 9 17:41:46 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 9 17:42:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bfa2b10 media-sound/alsaplayer: fix libdir Thanks-to: Samuel Bauer yahoo.fr> Closes: https://bugs.gentoo.org/733896 Signed-off-by: Sam James gentoo.org> media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild index 27659636bbb..374beb56d61 100644 --- a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild +++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -48,6 +48,10 @@ src_prepare() { -e 's:-O2 -funroll-loops -finline-functions -ffast-math::' \ configure.ac || die + sed -i \ + -e "s:/usr/lib:/usr/$(get_libdir):" \ + configure.ac config.rpath || die + eautoreconf }