Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ftjam/
Date: Thu, 29 Sep 2022 04:28:04
Message-Id: 1664425074.a2ada5c14ac624a0435b919950fb101fe7d6fe52.ionen@gentoo
1 commit: a2ada5c14ac624a0435b919950fb101fe7d6fe52
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 29 03:28:01 2022 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 29 04:17:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2ada5c1
7
8 dev-util/ftjam: respect AR and RANLIB
9
10 Closes: https://bugs.gentoo.org/720706
11 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
12
13 dev-util/ftjam/ftjam-2.5.3_rc2-r2.ebuild | 4 +++-
14 1 file changed, 3 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-util/ftjam/ftjam-2.5.3_rc2-r2.ebuild b/dev-util/ftjam/ftjam-2.5.3_rc2-r2.ebuild
17 index e261b7338088..816961d7bfa0 100644
18 --- a/dev-util/ftjam/ftjam-2.5.3_rc2-r2.ebuild
19 +++ b/dev-util/ftjam/ftjam-2.5.3_rc2-r2.ebuild
20 @@ -30,5 +30,7 @@ PATCHES=(
21
22 src_prepare() {
23 default
24 - tc-export CC
25 +
26 + tc-export CC RANLIB
27 + export AR="$(tc-getAR) ru" #720706
28 }