From: Michał Górny Date: Mon, 30 Dec 2019 16:33:44 +0000 (+0100) Subject: app-crypt/pesign: Remove broken gcc-ar hack X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=f51c67e0a27e7209851f0a851a1333e57624e532;p=gentoo.git app-crypt/pesign: Remove broken gcc-ar hack The AR override that attempts to force 'gcc-ar' does not work with all CC values. Revert to using $(tc-getAR). Signed-off-by: Michał Górny --- diff --git a/app-crypt/pesign/pesign-113.ebuild b/app-crypt/pesign/pesign-113.ebuild index 40d481c35cc5..fcb4a4ab3809 100644 --- a/app-crypt/pesign/pesign-113.ebuild +++ b/app-crypt/pesign/pesign-113.ebuild @@ -32,7 +32,7 @@ DEPEND="${RDEPEND} PATCHES=( "${FILESDIR}"/${PN}-113-nss.patch ) src_compile() { - emake AR="$(tc-is-gcc && echo "$(tc-getCC)-ar" || tc-getAR)" \ + emake AR="$(tc-getAR)" \ ARFLAGS="-cvqs" \ AS="$(tc-getAS)" \ CC="$(tc-getCC)" \