x11-misc/xplanet: Don't call AR directly

Closes: https://bugs.gentoo.org/726292
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Matt Smith <matt@offtopica.uk>
Closes: https://github.com/gentoo/gentoo/pull/20680
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
This commit is contained in:
Matt Smith
2021-05-04 15:19:25 +01:00
committed by Lars Wendler
parent 1cc6e6038c
commit 2e19c9194c

View File

@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools flag-o-matic
inherit autotools flag-o-matic toolchain-funcs
DESCRIPTION="Render images of the earth into the X root window"
HOMEPAGE="http://xplanet.sourceforge.net/"
@@ -66,3 +66,7 @@ src_configure() {
)
econf --with-cspice=no "${myconf[@]}"
}
src_compile() {
emake AR=$(tc-getAR)
}