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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B6085158094 for ; Wed, 13 Jul 2022 07:08:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAF51E0EF8; Wed, 13 Jul 2022 07:08:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 AA4A4E0EF8 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 4AECE340FE3 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 823E3456 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.9c74cd50bbcf288926c485765f2c6810ef93f139.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen-tools/xen-tools-4.16.2_pre2.ebuild X-VCS-Directories: app-emulation/xen-tools/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 9c74cd50bbcf288926c485765f2c6810ef93f139 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: 8c3221b5-6816-4e77-88e9-803a6a79fb94 X-Archives-Hash: fccc6337b8e53df085a29a9593092311 commit: 9c74cd50bbcf288926c485765f2c6810ef93f139 Author: Florian Schmaus gentoo org> AuthorDate: Wed Jul 13 06:57:20 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=9c74cd50 app-emulation/xen-tools: set OBJDUMP Closes: https://bugs.gentoo.org/728020 Signed-off-by: Florian Schmaus gentoo.org> app-emulation/xen-tools/xen-tools-4.16.2_pre2.ebuild | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app-emulation/xen-tools/xen-tools-4.16.2_pre2.ebuild b/app-emulation/xen-tools/xen-tools-4.16.2_pre2.ebuild index 84cc9ef221d0..d41e907ed14d 100644 --- a/app-emulation/xen-tools/xen-tools-4.16.2_pre2.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.16.2_pre2.ebuild @@ -429,7 +429,16 @@ src_compile() { local -x NO_WERROR=1 fi - emake CC="$(tc-getCC)" LD="$(tc-getLD)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" build-tools ${myopt} + emake \ + 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)" \ + build-tools ${myopt} if use doc; then emake -C docs build