From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AFD76138206 for ; Tue, 2 Jan 2018 02:04:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32D5AE081E; Tue, 2 Jan 2018 02:04:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 029DAE081E for ; Tue, 2 Jan 2018 02:04:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0AC25335C09 for ; Tue, 2 Jan 2018 02:04:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DFBB147 for ; Tue, 2 Jan 2018 02:04:23 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1514858660.cf0d5030678f66888119fd14adba0aaed24fdb0f.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libcap/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libcap/libcap-2.24-r2.ebuild sys-libs/libcap/libcap-2.25.ebuild X-VCS-Directories: sys-libs/libcap/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: cf0d5030678f66888119fd14adba0aaed24fdb0f X-VCS-Branch: master Date: Tue, 2 Jan 2018 02:04:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 73367a52-743b-43af-9818-38ac2e553508 X-Archives-Hash: f13695efd55bac20448fca2f57704198 commit: cf0d5030678f66888119fd14adba0aaed24fdb0f Author: Mike Gilbert gentoo org> AuthorDate: Tue Jan 2 02:04:06 2018 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Jan 2 02:04:20 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf0d5030 sys-libs/libcap: declare BUILD_CC as local This prevents multilib CFLAGS from spilling over. This should probably be fixed in multilib.eclass eventually. Package-Manager: Portage-2.3.19_p3, Repoman-2.3.6_p37 sys-libs/libcap/libcap-2.24-r2.ebuild | 5 +++-- sys-libs/libcap/libcap-2.25.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/sys-libs/libcap/libcap-2.24-r2.ebuild b/sys-libs/libcap/libcap-2.24-r2.ebuild index 5575faa355c..56d79e96f0e 100644 --- a/sys-libs/libcap/libcap-2.24-r2.ebuild +++ b/sys-libs/libcap/libcap-2.24-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="4" @@ -47,8 +47,9 @@ multilib_src_configure() { } multilib_src_compile() { - tc-export_build_env BUILD_CC tc-export AR CC RANLIB + local BUILD_CC + tc-export_build_env BUILD_CC default } diff --git a/sys-libs/libcap/libcap-2.25.ebuild b/sys-libs/libcap/libcap-2.25.ebuild index feb60b9a4b6..81fb56032a2 100644 --- a/sys-libs/libcap/libcap-2.25.ebuild +++ b/sys-libs/libcap/libcap-2.25.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -52,8 +52,9 @@ multilib_src_configure() { } multilib_src_compile() { - tc-export_build_env BUILD_CC tc-export AR CC RANLIB + local BUILD_CC + tc-export_build_env BUILD_CC default }