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 10C751395E2 for ; Wed, 2 Nov 2016 16:19:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 19D29E0C81; Wed, 2 Nov 2016 16:19:46 +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 C9B43E0C81 for ; Wed, 2 Nov 2016 16:19:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 CC3BA341509 for ; Wed, 2 Nov 2016 16:19:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 13BF324AA for ; Wed, 2 Nov 2016 16:19:42 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1478102932.4b144e2682d22cd7a826eaee527b0b3e0725c064.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/likwid/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/likwid/likwid-4.1.2.ebuild X-VCS-Directories: sys-apps/likwid/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 4b144e2682d22cd7a826eaee527b0b3e0725c064 X-VCS-Branch: master Date: Wed, 2 Nov 2016 16:19:42 +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: 0441625b-588d-40db-ab78-c97750b7ec31 X-Archives-Hash: 4692c8d45c532dca63d2885012d01ddd commit: 4b144e2682d22cd7a826eaee527b0b3e0725c064 Author: Göktürk Yüksek gentoo org> AuthorDate: Wed Nov 2 15:52:34 2016 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Wed Nov 2 16:08:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b144e26 sys-apps/likwid: respect CC Package-Manager: portage-2.2.28 sys-apps/likwid/likwid-4.1.2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys-apps/likwid/likwid-4.1.2.ebuild b/sys-apps/likwid/likwid-4.1.2.ebuild index 6566777..a20b746 100644 --- a/sys-apps/likwid/likwid-4.1.2.ebuild +++ b/sys-apps/likwid/likwid-4.1.2.ebuild @@ -6,7 +6,7 @@ EAPI=6 FORTRAN_NEEDED=fortran -inherit fcaps linux-info fortran-2 +inherit fcaps linux-info toolchain-funcs fortran-2 DESCRIPTION="A performance-oriented tool suite for x86 multicore environments" HOMEPAGE="https://github.com/rrze-likwid/likwid" @@ -78,6 +78,10 @@ src_prepare() { || die "Failed to set GCC flags for fortran" fi + # Respect CC + sed -e "s:^CC.*:CC = $(tc-getCC):" \ + -i make/include_GCC.mk || die + default }