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 6EE251382C5 for ; Thu, 20 May 2021 17:18:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A23FAE0884; Thu, 20 May 2021 17:18:11 +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 6259EE0884 for ; Thu, 20 May 2021 17:18:11 +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 52D0B340CF4 for ; Thu, 20 May 2021 17:18:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88491581 for ; Thu, 20 May 2021 17:18:08 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1621531070.5f6504cc8a6cd6890faedb00b9317bb5e1597ee4.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/libgpr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/libgpr/libgpr-2020-r1.ebuild dev-ada/libgpr/libgpr-2020.ebuild X-VCS-Directories: dev-ada/libgpr/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 5f6504cc8a6cd6890faedb00b9317bb5e1597ee4 X-VCS-Branch: master Date: Thu, 20 May 2021 17:18:08 +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: c76af766-4aa3-47fa-9204-047f7e6d2221 X-Archives-Hash: b86c0e2fe997c5aeb6feaf224e6c0358 commit: 5f6504cc8a6cd6890faedb00b9317bb5e1597ee4 Author: Alfredo Tupone gentoo org> AuthorDate: Thu May 20 17:17:50 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Thu May 20 17:17:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f6504cc dev-ada/libgpr: fix VariableScope Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Alfredo Tupone gentoo.org> dev-ada/libgpr/libgpr-2020-r1.ebuild | 6 +++--- dev-ada/libgpr/libgpr-2020.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-ada/libgpr/libgpr-2020-r1.ebuild b/dev-ada/libgpr/libgpr-2020-r1.ebuild index 1ab635a5e86..9a3b8981ee3 100644 --- a/dev-ada/libgpr/libgpr-2020-r1.ebuild +++ b/dev-ada/libgpr/libgpr-2020-r1.ebuild @@ -29,7 +29,7 @@ S="${WORKDIR}"/${MYP} PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) src_configure() { - emake prefix="${D}"/usr setup + emake setup } src_compile() { @@ -51,11 +51,11 @@ src_compile() { src_install() { if use static-libs; then - emake DESTDIR="${D}" libgpr.install.static + emake prefix="${D}"/usr libgpr.install.static fi for kind in shared static-pic; do if use ${kind}; then - emake DESTDIR="${D}" libgpr.install.${kind} + emake prefix="${D}"/usr libgpr.install.${kind} fi done rm -r "${D}"/usr/share/gpr/manifests || die diff --git a/dev-ada/libgpr/libgpr-2020.ebuild b/dev-ada/libgpr/libgpr-2020.ebuild index 3b4ca5795e9..ab41d067b56 100644 --- a/dev-ada/libgpr/libgpr-2020.ebuild +++ b/dev-ada/libgpr/libgpr-2020.ebuild @@ -29,7 +29,7 @@ S="${WORKDIR}"/${MYP} PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) src_configure() { - emake prefix="${D}"/usr setup + emake setup } src_compile() { @@ -51,11 +51,11 @@ src_compile() { src_install() { if use static-libs; then - emake DESTDIR="${D}" libgpr.install.static + emake prefix="${D}"/usr libgpr.install.static fi for kind in shared static-pic; do if use ${kind}; then - emake DESTDIR="${D}" libgpr.install.${kind} + emake prefix="${D}"/usr libgpr.install.${kind} fi done rm -r "${D}"/usr/share/gpr/manifests || die