Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/arj/
Date: Mon, 07 Sep 2020 20:34:07
Message-Id: 1599510828.f704e096d5916716b244bfc58178b014e5f00f50.chewi@gentoo
1 commit: f704e096d5916716b244bfc58178b014e5f00f50
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 7 20:33:22 2020 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 7 20:33:48 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f704e096
7
8 app-arch/arj: Respect CC
9
10 Package-Manager: Portage-3.0.5, Repoman-3.0.1
11 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
12
13 app-arch/arj/arj-3.10.22-r7.ebuild | 5 +++--
14 1 file changed, 3 insertions(+), 2 deletions(-)
15
16 diff --git a/app-arch/arj/arj-3.10.22-r7.ebuild b/app-arch/arj/arj-3.10.22-r7.ebuild
17 index 2cfa30f4cf9..ac01385b6dd 100644
18 --- a/app-arch/arj/arj-3.10.22-r7.ebuild
19 +++ b/app-arch/arj/arj-3.10.22-r7.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2019 Gentoo Authors
22 +# Copyright 1999-2020 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=6
26
27 -inherit autotools
28 +inherit autotools toolchain-funcs
29
30 PATCH_LEVEL=15
31 MY_P="${PN}_${PV}"
32 @@ -47,5 +47,6 @@ src_prepare() {
33
34 src_configure() {
35 cd gnu || die 'failed to change to the "gnu" directory'
36 + tc-export CC # Uses autoconf but not automake.
37 econf
38 }