Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/pesign/
Date: Mon, 30 Dec 2019 18:18:40
Message-Id: 1577729912.f51c67e0a27e7209851f0a851a1333e57624e532.mgorny@gentoo
1 commit: f51c67e0a27e7209851f0a851a1333e57624e532
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 30 16:33:44 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 30 18:18:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f51c67e0
7
8 app-crypt/pesign: Remove broken gcc-ar hack
9
10 The AR override that attempts to force 'gcc-ar' does not work with all
11 CC values. Revert to using $(tc-getAR).
12
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 app-crypt/pesign/pesign-113.ebuild | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/app-crypt/pesign/pesign-113.ebuild b/app-crypt/pesign/pesign-113.ebuild
19 index 40d481c35cc..fcb4a4ab380 100644
20 --- a/app-crypt/pesign/pesign-113.ebuild
21 +++ b/app-crypt/pesign/pesign-113.ebuild
22 @@ -32,7 +32,7 @@ DEPEND="${RDEPEND}
23 PATCHES=( "${FILESDIR}"/${PN}-113-nss.patch )
24
25 src_compile() {
26 - emake AR="$(tc-is-gcc && echo "$(tc-getCC)-ar" || tc-getAR)" \
27 + emake AR="$(tc-getAR)" \
28 ARFLAGS="-cvqs" \
29 AS="$(tc-getAS)" \
30 CC="$(tc-getCC)" \