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 2EDC613835A for ; Tue, 4 May 2021 22:02:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64BE3E0876; Tue, 4 May 2021 22:02:58 +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 48F93E0875 for ; Tue, 4 May 2021 22:02:58 +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 B6C70340DA8 for ; Tue, 4 May 2021 22:02:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F34D745 for ; Tue, 4 May 2021 22:02:52 +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: <1620165672.b6417909f81474b38743d880470aa0d326958888.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/openscad/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/openscad/openscad-2021.01.ebuild X-VCS-Directories: media-gfx/openscad/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b6417909f81474b38743d880470aa0d326958888 X-VCS-Branch: master Date: Tue, 4 May 2021 22:02:52 +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: e4d246b5-066c-438f-a505-42b50c1fdfd4 X-Archives-Hash: 77283126a33f46285b8721d750e81e7c commit: b6417909f81474b38743d880470aa0d326958888 Author: Bernd Waibel posteo net> AuthorDate: Wed Apr 28 19:37:00 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 4 22:01:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6417909 media-gfx/openscad: adjust variables Adjust the USE of EROOT in src_configure, due to newly reported issues from repoman and pkgcheck. Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Bernd Waibel posteo.net> Closes: https://github.com/gentoo/gentoo/pull/20585 Signed-off-by: Sam James gentoo.org> media-gfx/openscad/openscad-2021.01.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-gfx/openscad/openscad-2021.01.ebuild b/media-gfx/openscad/openscad-2021.01.ebuild index 3302af49419..31831701d92 100644 --- a/media-gfx/openscad/openscad-2021.01.ebuild +++ b/media-gfx/openscad/openscad-2021.01.ebuild @@ -69,9 +69,9 @@ src_prepare() { src_configure() { if has ccache ${FEATURES}; then - eqmake5 "PREFIX = ${EROOT}/usr" "CONFIG += ccache" "${PN}.pro" + eqmake5 "PREFIX = ${ESYSROOT}/usr" "CONFIG += ccache" "${PN}.pro" else - eqmake5 "PREFIX = ${EROOT}/usr" "${PN}.pro" + eqmake5 "PREFIX = ${ESYSROOT}/usr" "${PN}.pro" fi }