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 47FCC1382C5 for ; Thu, 22 Apr 2021 17:06:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69A63E08CE; Thu, 22 Apr 2021 17:06:37 +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 4AE0AE08CE for ; Thu, 22 Apr 2021 17:06:37 +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 E0738340D1D for ; Thu, 22 Apr 2021 17:06:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D0EED647 for ; Thu, 22 Apr 2021 17:06:27 +0000 (UTC) From: "Octiabrina Terrien-Puig" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Octiabrina Terrien-Puig" Message-ID: <1619111063.2862e870f77eb5ee4507d885eea347fcb1aa1ce6.octiabrina@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/wev/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/wev/wev-1.0.0.ebuild X-VCS-Directories: gui-apps/wev/ X-VCS-Committer: octiabrina X-VCS-Committer-Name: Octiabrina Terrien-Puig X-VCS-Revision: 2862e870f77eb5ee4507d885eea347fcb1aa1ce6 X-VCS-Branch: dev Date: Thu, 22 Apr 2021 17:06:27 +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: 009fb830-bd15-4793-ad94-91d33d8184e8 X-Archives-Hash: 48276fd411e0cc02b71dd2480e4cf5bb commit: 2862e870f77eb5ee4507d885eea347fcb1aa1ce6 Author: Octiabrina Terrien-Puig myrvogna net> AuthorDate: Thu Apr 22 17:04:23 2021 +0000 Commit: Octiabrina Terrien-Puig myrvogna net> CommitDate: Thu Apr 22 17:04:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2862e870 gui-apps/wev: fix cc direct call Closes: https://bugs.gentoo.org/785079 Signed-off-by: Octiabrina Terrien-Puig myrvogna.net> gui-apps/wev/wev-1.0.0.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gui-apps/wev/wev-1.0.0.ebuild b/gui-apps/wev/wev-1.0.0.ebuild index bc72849eb..db46fef22 100644 --- a/gui-apps/wev/wev-1.0.0.ebuild +++ b/gui-apps/wev/wev-1.0.0.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + DESCRIPTION="Wayland event viewer" HOMEPAGE="https://git.sr.ht/~sircmpwn/wev" SRC_URI="https://git.sr.ht/~sircmpwn/wev/archive/${PV}.tar.gz -> ${P}.tar.gz" @@ -31,3 +33,9 @@ src_prepare() { -e 's/local//' \ -i Makefile || die } + +src_compile() { + tc-export CC + + default +}