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 79ED01382C5 for ; Wed, 3 Mar 2021 10:24:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B892DE0885; Wed, 3 Mar 2021 10:24:18 +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 93CD2E0885 for ; Wed, 3 Mar 2021 10:24:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 29B22335DC6 for ; Wed, 3 Mar 2021 10:24:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7280D531 for ; Wed, 3 Mar 2021 10:24:15 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1614766977.c8f16976c02e15fed57e40aa4c6449691c3a3766.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/perf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/perf/perf-5.10.16.ebuild dev-util/perf/perf-5.11.ebuild dev-util/perf/perf-5.8.ebuild dev-util/perf/perf-5.9.9.ebuild X-VCS-Directories: dev-util/perf/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: c8f16976c02e15fed57e40aa4c6449691c3a3766 X-VCS-Branch: master Date: Wed, 3 Mar 2021 10:24:15 +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: 3c8fe8b8-76e1-44c8-a10a-6ae0f6cb1d60 X-Archives-Hash: b502dfc10aa51b336582c981ea91f48b commit: c8f16976c02e15fed57e40aa4c6449691c3a3766 Author: 12101111 gmail com> AuthorDate: Wed Mar 3 06:59:26 2021 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Wed Mar 3 10:22:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f16976 dev-util/perf: fix libdir Closes: https://bugs.gentoo.org/774006 Closes: https://github.com/gentoo/gentoo/pull/19746 Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Han PuYu gmail.com> Signed-off-by: Guilherme Amadio gentoo.org> dev-util/perf/perf-5.10.16.ebuild | 1 + dev-util/perf/perf-5.11.ebuild | 1 + dev-util/perf/perf-5.8.ebuild | 3 ++- dev-util/perf/perf-5.9.9.ebuild | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-util/perf/perf-5.10.16.ebuild b/dev-util/perf/perf-5.10.16.ebuild index 57147178746..eda4faf8ef8 100644 --- a/dev-util/perf/perf-5.10.16.ebuild +++ b/dev-util/perf/perf-5.10.16.ebuild @@ -198,6 +198,7 @@ perf_make() { NO_ZLIB= \ WERROR=0 \ LIBDIR="/usr/libexec/perf-core" \ + libdir="${EPREFIX}/usr/$(get_libdir)" \ "$@" } diff --git a/dev-util/perf/perf-5.11.ebuild b/dev-util/perf/perf-5.11.ebuild index 57147178746..eda4faf8ef8 100644 --- a/dev-util/perf/perf-5.11.ebuild +++ b/dev-util/perf/perf-5.11.ebuild @@ -198,6 +198,7 @@ perf_make() { NO_ZLIB= \ WERROR=0 \ LIBDIR="/usr/libexec/perf-core" \ + libdir="${EPREFIX}/usr/$(get_libdir)" \ "$@" } diff --git a/dev-util/perf/perf-5.8.ebuild b/dev-util/perf/perf-5.8.ebuild index 98e5a27536a..60411320375 100644 --- a/dev-util/perf/perf-5.8.ebuild +++ b/dev-util/perf/perf-5.8.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=7 @@ -184,6 +184,7 @@ perf_make() { NO_ZLIB= \ WERROR=0 \ LIBDIR="/usr/libexec/perf-core" \ + libdir="${EPREFIX}/usr/$(get_libdir)" \ "$@" } diff --git a/dev-util/perf/perf-5.9.9.ebuild b/dev-util/perf/perf-5.9.9.ebuild index 6fc372d7c68..251cfd4abb8 100644 --- a/dev-util/perf/perf-5.9.9.ebuild +++ b/dev-util/perf/perf-5.9.9.ebuild @@ -198,6 +198,7 @@ perf_make() { NO_ZLIB= \ WERROR=0 \ LIBDIR="/usr/libexec/perf-core" \ + libdir="${EPREFIX}/usr/$(get_libdir)" \ "$@" }