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 10F95138334 for ; Thu, 3 Oct 2019 09:34:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E506E087B; Thu, 3 Oct 2019 09:34:11 +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 30C29E087B for ; Thu, 3 Oct 2019 09:34:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 EDB4634B7E1 for ; Thu, 3 Oct 2019 09:34:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40FC9744 for ; Thu, 3 Oct 2019 09:34:07 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1570095103.a1ddeefb53647830f2c1b781c51487eecd290d4a.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/tbb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/tbb/tbb-2019.8.ebuild X-VCS-Directories: dev-cpp/tbb/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: a1ddeefb53647830f2c1b781c51487eecd290d4a X-VCS-Branch: master Date: Thu, 3 Oct 2019 09:34:07 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 14ae1c02-31b8-4981-af9a-e8a943b9c5d6 X-Archives-Hash: d287d0055b2472acca3db315a23e132d commit: a1ddeefb53647830f2c1b781c51487eecd290d4a Author: Peter Levine gmail com> AuthorDate: Thu Oct 3 01:43:17 2019 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Thu Oct 3 09:31:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1ddeefb dev-cpp/tbb: Fix building with clang Prevent "clang++" from being inadvertently matched to "*g++*" in a case statement. Closes: https://bugs.gentoo.org/662990 Closes: https://github.com/gentoo/gentoo/pull/13129 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Peter Levine gmail.com> Signed-off-by: Guilherme Amadio gentoo.org> dev-cpp/tbb/tbb-2019.8.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-cpp/tbb/tbb-2019.8.ebuild b/dev-cpp/tbb/tbb-2019.8.ebuild index fd77782aba4..b0174501177 100644 --- a/dev-cpp/tbb/tbb-2019.8.ebuild +++ b/dev-cpp/tbb/tbb-2019.8.ebuild @@ -80,9 +80,9 @@ local_src_compile() { esac case "$(tc-getCXX)" in + *clang*) comp="clang" ;; *g++*) comp="gcc" ;; *ic*c) comp="icc" ;; - *clang*) comp="clang" ;; *) die "compiler $(tc-getCXX) not supported by build system" ;; esac