Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libcap/
Date: Tue, 02 Jan 2018 02:04:30
Message-Id: 1514858660.cf0d5030678f66888119fd14adba0aaed24fdb0f.floppym@gentoo
1 commit: cf0d5030678f66888119fd14adba0aaed24fdb0f
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 02:04:06 2018 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 02:04:20 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf0d5030
7
8 sys-libs/libcap: declare BUILD_CC as local
9
10 This prevents multilib CFLAGS from spilling over. This should probably
11 be fixed in multilib.eclass eventually.
12
13 Package-Manager: Portage-2.3.19_p3, Repoman-2.3.6_p37
14
15 sys-libs/libcap/libcap-2.24-r2.ebuild | 5 +++--
16 sys-libs/libcap/libcap-2.25.ebuild | 5 +++--
17 2 files changed, 6 insertions(+), 4 deletions(-)
18
19 diff --git a/sys-libs/libcap/libcap-2.24-r2.ebuild b/sys-libs/libcap/libcap-2.24-r2.ebuild
20 index 5575faa355c..56d79e96f0e 100644
21 --- a/sys-libs/libcap/libcap-2.24-r2.ebuild
22 +++ b/sys-libs/libcap/libcap-2.24-r2.ebuild
23 @@ -1,4 +1,4 @@
24 -# Copyright 1999-2017 Gentoo Foundation
25 +# Copyright 1999-2018 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI="4"
29 @@ -47,8 +47,9 @@ multilib_src_configure() {
30 }
31
32 multilib_src_compile() {
33 - tc-export_build_env BUILD_CC
34 tc-export AR CC RANLIB
35 + local BUILD_CC
36 + tc-export_build_env BUILD_CC
37
38 default
39 }
40
41 diff --git a/sys-libs/libcap/libcap-2.25.ebuild b/sys-libs/libcap/libcap-2.25.ebuild
42 index feb60b9a4b6..81fb56032a2 100644
43 --- a/sys-libs/libcap/libcap-2.25.ebuild
44 +++ b/sys-libs/libcap/libcap-2.25.ebuild
45 @@ -1,4 +1,4 @@
46 -# Copyright 1999-2017 Gentoo Foundation
47 +# Copyright 1999-2018 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49
50 EAPI=5
51 @@ -52,8 +52,9 @@ multilib_src_configure() {
52 }
53
54 multilib_src_compile() {
55 - tc-export_build_env BUILD_CC
56 tc-export AR CC RANLIB
57 + local BUILD_CC
58 + tc-export_build_env BUILD_CC
59
60 default
61 }