summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernd Waibel <waebbl-gentoo@posteo.net>2021-04-28 21:37:00 +0200
committerSam James <sam@gentoo.org>2021-05-04 22:01:12 +0000
commitb6417909f81474b38743d880470aa0d326958888 (patch)
tree5b682a1fa9ee446b34b96eb4382d8d2102ca6e30
parentmedia-gfx/openscad: fix installation (diff)
downloadgentoo-b6417909f81474b38743d880470aa0d326958888.tar.gz
gentoo-b6417909f81474b38743d880470aa0d326958888.tar.bz2
gentoo-b6417909f81474b38743d880470aa0d326958888.zip
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 <waebbl-gentoo@posteo.net> Closes: https://github.com/gentoo/gentoo/pull/20585 Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--media-gfx/openscad/openscad-2021.01.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/media-gfx/openscad/openscad-2021.01.ebuild b/media-gfx/openscad/openscad-2021.01.ebuild
index 3302af494194..31831701d921 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
}