From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-848736-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 36F341384B4
	for <garchives@archives.gentoo.org>; Thu, 26 Nov 2015 10:36:38 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id AF8E721C100;
	Thu, 26 Nov 2015 10:36:36 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 50E8121C100
	for <gentoo-commits@lists.gentoo.org>; Thu, 26 Nov 2015 10:36:36 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 477F7340545
	for <gentoo-commits@lists.gentoo.org>; Thu, 26 Nov 2015 10:36:35 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 26740612
	for <gentoo-commits@lists.gentoo.org>; Thu, 26 Nov 2015 10:36:32 +0000 (UTC)
From: "Justin Lecher" <jlec@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, "Justin Lecher" <jlec@gentoo.org>
Message-ID: <1448533981.57a9ac7abe3ebe88b28cd02c2ea6a2621d9f4b6d.jlec@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tbb/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-cpp/tbb/tbb-4.3.20150611-r1.ebuild
X-VCS-Directories: dev-cpp/tbb/
X-VCS-Committer: jlec
X-VCS-Committer-Name: Justin Lecher
X-VCS-Revision: 57a9ac7abe3ebe88b28cd02c2ea6a2621d9f4b6d
X-VCS-Branch: master
Date: Thu, 26 Nov 2015 10:36:32 +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: d86113a9-4405-4f42-8298-d5c5d7afaaca
X-Archives-Hash: 217654a370c78c964387389506963cda

commit:     57a9ac7abe3ebe88b28cd02c2ea6a2621d9f4b6d
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 26 10:33:01 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Nov 26 10:33:01 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57a9ac7a

dev-cpp/tbb: Fix MULTILIB_ABI_FLAG on PowerPC

thanks
 Marcus Comstedt for the patch

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=566758

Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-cpp/tbb/tbb-4.3.20150611-r1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-cpp/tbb/tbb-4.3.20150611-r1.ebuild b/dev-cpp/tbb/tbb-4.3.20150611-r1.ebuild
index 31f7343..2a45353 100644
--- a/dev-cpp/tbb/tbb-4.3.20150611-r1.ebuild
+++ b/dev-cpp/tbb/tbb-4.3.20150611-r1.ebuild
@@ -77,6 +77,8 @@ local_src_compile() {
 	case ${MULTILIB_ABI_FLAG} in
 		abi_x86_64) arch=x86_64 ;;
 		abi_x86_32) arch=ia32 ;;
+		abi_ppc_64) arch=ppc64 ;;
+		abi_ppc_32) arch=ppc32 ;;
 	esac
 
 	case "$(tc-getCXX)" in