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 CEC20139694 for ; Wed, 10 May 2017 22:35:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BDF0A21C075; Wed, 10 May 2017 22:35:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 941D821C075 for ; Wed, 10 May 2017 22:35:54 +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 15B0234169C for ; Wed, 10 May 2017 22:35:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F767845 for ; Wed, 10 May 2017 22:35:51 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1494455734.05eb2b2a092fbc693def470d7fc448aa784bc7e5.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libatomic_ops/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libatomic_ops/libatomic_ops-7.4.4.ebuild X-VCS-Directories: dev-libs/libatomic_ops/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 05eb2b2a092fbc693def470d7fc448aa784bc7e5 X-VCS-Branch: master Date: Wed, 10 May 2017 22:35:51 +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: e4ee809a-39a5-44b0-97c8-8fecccba4ba3 X-Archives-Hash: 025583fbd6aede6f1b48cf12281f37df commit: 05eb2b2a092fbc693def470d7fc448aa784bc7e5 Author: David Seifert gentoo org> AuthorDate: Wed May 10 20:24:45 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Wed May 10 22:35:34 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05eb2b2a dev-libs/libatomic_ops: Make multilib compatible Bug: https://bugs.gentoo.org/show_bug.cgi?id=617788 Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-libs/libatomic_ops/libatomic_ops-7.4.4.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-libs/libatomic_ops/libatomic_ops-7.4.4.ebuild b/dev-libs/libatomic_ops/libatomic_ops-7.4.4.ebuild index 8ce4b760dca..83c6e36d41a 100644 --- a/dev-libs/libatomic_ops/libatomic_ops-7.4.4.ebuild +++ b/dev-libs/libatomic_ops/libatomic_ops-7.4.4.ebuild @@ -2,7 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit autotools + +inherit autotools multilib-minimal MY_P=${PN}-${PV//./_} DESCRIPTION="Implementation for atomic memory update operations" @@ -23,6 +24,6 @@ src_prepare() { eautoreconf } -src_configure() { - econf --docdir="${EPREFIX}"/usr/share/doc/${PF} +multilib_src_configure() { + ECONF_SOURCE=${S} econf }