diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-12-30 17:33:44 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-12-30 19:18:32 +0100 |
commit | f51c67e0a27e7209851f0a851a1333e57624e532 (patch) | |
tree | eee5f6b08c8b9b03f7c8677314fed35c7062dfdf /app-crypt/pesign | |
parent | dev-python/pysnmp: Old (diff) | |
download | gentoo-f51c67e0a27e7209851f0a851a1333e57624e532.tar.gz gentoo-f51c67e0a27e7209851f0a851a1333e57624e532.tar.bz2 gentoo-f51c67e0a27e7209851f0a851a1333e57624e532.zip |
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 <mgorny@gentoo.org>
Diffstat (limited to 'app-crypt/pesign')
-rw-r--r-- | app-crypt/pesign/pesign-113.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
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)" \ |