From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-931236-garchives=archives.gentoo.org@lists.gentoo.org>
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 8574A139694
	for <garchives@archives.gentoo.org>; Tue, 14 Feb 2017 02:37:25 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 8F487E0C78;
	Tue, 14 Feb 2017 02:37:23 +0000 (UTC)
Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 6AD3CE0C78
	for <gentoo-commits@lists.gentoo.org>; Tue, 14 Feb 2017 02:37:22 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id ED2B4341236
	for <gentoo-commits@lists.gentoo.org>; Tue, 14 Feb 2017 02:37:20 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DBDB470E
	for <gentoo-commits@lists.gentoo.org>; Tue, 14 Feb 2017 02:37:19 +0000 (UTC)
From: "Mike Frysinger" <vapier@gentoo.org>
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 Frysinger" <vapier@gentoo.org>
Message-ID: <1487038968.0a61b2fa682d3872cba99cb9e1c124b750bfe901.vapier@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libunwind/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-libs/libunwind/libunwind-1.2_rc1.ebuild
X-VCS-Directories: sys-libs/libunwind/
X-VCS-Committer: vapier
X-VCS-Committer-Name: Mike Frysinger
X-VCS-Revision: 0a61b2fa682d3872cba99cb9e1c124b750bfe901
X-VCS-Branch: master
Date: Tue, 14 Feb 2017 02:37:19 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 2d804288-4db4-41eb-8763-834db26d93cc
X-Archives-Hash: a288266a9cf4a91d6f13f884db97037f

commit:     0a61b2fa682d3872cba99cb9e1c124b750bfe901
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 14 02:11:51 2017 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 02:22:48 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a61b2fa

sys-libs/libunwind: fix wasteful multilib source copies

We can use standard autotools out-of-tree build logic to avoid copying.

 sys-libs/libunwind/libunwind-1.2_rc1.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys-libs/libunwind/libunwind-1.2_rc1.ebuild b/sys-libs/libunwind/libunwind-1.2_rc1.ebuild
index 3463a052e4..1a17b24e07 100644
--- a/sys-libs/libunwind/libunwind-1.2_rc1.ebuild
+++ b/sys-libs/libunwind/libunwind-1.2_rc1.ebuild
@@ -24,8 +24,6 @@ RDEPEND="lzma? ( app-arch/xz-utils )"
 DEPEND="${RDEPEND}
 	libatomic? ( dev-libs/libatomic_ops )"
 
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
 QA_DT_NEEDED_x86_fbsd="usr/lib/libunwind.so.7.0.0"
 
 S="${WORKDIR}/${MY_P}"
@@ -57,7 +55,6 @@ src_prepare() {
 	sed -i -e '/^SUBDIRS/s:tests::' Makefile.in || die
 
 	elibtoolize
-	multilib_copy_sources
 }
 
 multilib_src_configure() {
@@ -67,6 +64,7 @@ multilib_src_configure() {
 	# conservative-checks: validate memory addresses before use; as of 1.0.1,
 	# only x86_64 supports this, yet may be useful for debugging, couple it with
 	# debug useflag.
+	ECONF_SOURCE="${S}" \
 	ac_cv_header_atomic_ops_h=$(usex libatomic) \
 	econf \
 		--enable-cxx-exceptions \