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 4B65213835C for ; Fri, 23 Apr 2021 08:48:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96880E0958; Fri, 23 Apr 2021 08:48:00 +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 79E39E0958 for ; Fri, 23 Apr 2021 08:48:00 +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 467EF34133E for ; Fri, 23 Apr 2021 08:47:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB3B3745 for ; Fri, 23 Apr 2021 08:47:38 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1619146635.4f6255edc782dab82666b02f9cf16c85c136e4df.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-process/nq/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-process/nq/nq-0.4.ebuild X-VCS-Directories: sys-process/nq/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: 4f6255edc782dab82666b02f9cf16c85c136e4df X-VCS-Branch: master Date: Fri, 23 Apr 2021 08:47:38 +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: 5e346a71-2fa3-405f-b17c-5c794c9d56f1 X-Archives-Hash: e2871cd984d7dce1b143ec4ae5563c42 commit: 4f6255edc782dab82666b02f9cf16c85c136e4df Author: Marco Sirabella sirabella org> AuthorDate: Fri Apr 23 02:53:31 2021 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Fri Apr 23 02:57:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4f6255ed sys-process/nq: pass down CC from toolchain-funcs Thanks to @ionen & @DarthGandalf for help clarifying some questions around this Signed-off-by: Marco Sirabella sirabella.org> sys-process/nq/nq-0.4.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-process/nq/nq-0.4.ebuild b/sys-process/nq/nq-0.4.ebuild index 380bc4da9..96d514d56 100644 --- a/sys-process/nq/nq-0.4.ebuild +++ b/sys-process/nq/nq-0.4.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + DESCRIPTION="Unix command line queue utility" HOMEPAGE="https://git.vuxu.org/nq/about/" SRC_URI="https://git.vuxu.org/${PN}/snapshot/${P}.tar.gz" @@ -29,7 +31,7 @@ src_compile() { cp nq.sh nq cp fq.sh fq fi - emake CFLAGS="${CFLAGS} -Wno-unused-result" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wno-unused-result" } src_install() {