Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/openscad/
Date: Tue, 04 May 2021 22:02:59
Message-Id: 1620165672.b6417909f81474b38743d880470aa0d326958888.sam@gentoo
1 commit: b6417909f81474b38743d880470aa0d326958888
2 Author: Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
3 AuthorDate: Wed Apr 28 19:37:00 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue May 4 22:01:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6417909
7
8 media-gfx/openscad: adjust variables
9
10 Adjust the USE of EROOT in src_configure, due to newly
11 reported issues from repoman and pkgcheck.
12
13 Package-Manager: Portage-3.0.18, Repoman-3.0.3
14 Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
15 Closes: https://github.com/gentoo/gentoo/pull/20585
16 Signed-off-by: Sam James <sam <AT> gentoo.org>
17
18 media-gfx/openscad/openscad-2021.01.ebuild | 4 ++--
19 1 file changed, 2 insertions(+), 2 deletions(-)
20
21 diff --git a/media-gfx/openscad/openscad-2021.01.ebuild b/media-gfx/openscad/openscad-2021.01.ebuild
22 index 3302af49419..31831701d92 100644
23 --- a/media-gfx/openscad/openscad-2021.01.ebuild
24 +++ b/media-gfx/openscad/openscad-2021.01.ebuild
25 @@ -69,9 +69,9 @@ src_prepare() {
26
27 src_configure() {
28 if has ccache ${FEATURES}; then
29 - eqmake5 "PREFIX = ${EROOT}/usr" "CONFIG += ccache" "${PN}.pro"
30 + eqmake5 "PREFIX = ${ESYSROOT}/usr" "CONFIG += ccache" "${PN}.pro"
31 else
32 - eqmake5 "PREFIX = ${EROOT}/usr" "${PN}.pro"
33 + eqmake5 "PREFIX = ${ESYSROOT}/usr" "${PN}.pro"
34 fi
35 }