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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9460C158094 for ; Wed, 13 Jul 2022 07:08:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5A3CE0EFB; Wed, 13 Jul 2022 07:08:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C0FD4E0EFB for ; Wed, 13 Jul 2022 07:08:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5A4D5340FF6 for ; Wed, 13 Jul 2022 07:08:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 976F552C for ; Wed, 13 Jul 2022 07:08:33 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1657696105.6c3e895d320ac2d181ad97f9576198256751ab5b.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen/xen-4.16.2_pre2.ebuild X-VCS-Directories: app-emulation/xen/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 6c3e895d320ac2d181ad97f9576198256751ab5b X-VCS-Branch: master Date: Wed, 13 Jul 2022 07:08:33 +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: 6bbff636-bdc1-434d-acad-ed759a1d393c X-Archives-Hash: d586350d74ff8725cfdf8746964d3658 commit: 6c3e895d320ac2d181ad97f9576198256751ab5b Author: Florian Schmaus gentoo org> AuthorDate: Wed Jul 13 06:57:45 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Jul 13 07:08:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c3e895d app-emulation/xen: set CC Closes: https://bugs.gentoo.org/839888 Signed-off-by: Florian Schmaus gentoo.org> app-emulation/xen/xen-4.16.2_pre2.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app-emulation/xen/xen-4.16.2_pre2.ebuild b/app-emulation/xen/xen-4.16.2_pre2.ebuild index 20d5d4f6c487..4a34e2a05bbe 100644 --- a/app-emulation/xen/xen-4.16.2_pre2.ebuild +++ b/app-emulation/xen/xen-4.16.2_pre2.ebuild @@ -123,6 +123,12 @@ xen_make() { LDFLAGS="$(raw-ldflags)" \ HOSTCC="$(tc-getBUILD_CC)" \ HOSTCXX="$(tc-getBUILD_CXX)" \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + LD="$(tc-getLD)" \ + AR="$(tc-getAR)" \ + OBJDUMP="$(tc-getOBJDUMP)" \ + RANLIB="$(tc-getRANLIB)" \ clang="${clang}" \ "$@" }