From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1672259-garchives=archives.gentoo.org@lists.gentoo.org> 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 A2423158083 for <garchives@archives.gentoo.org>; Sat, 21 Sep 2024 05:32:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4C3AE29AF; Sat, 21 Sep 2024 05:32:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 BC0F3E29AF for <gentoo-commits@lists.gentoo.org>; Sat, 21 Sep 2024 05:32:42 +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 08CDC3430D5 for <gentoo-commits@lists.gentoo.org>; Sat, 21 Sep 2024 05:32:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B760EAF for <gentoo-commits@lists.gentoo.org>; Sat, 21 Sep 2024 05:32:40 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1726896487.0f43ab559b9997b42839ff29f5ea9e5605a0bd14.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-debug/drgn/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-debug/drgn/drgn-0.0.27-r1.ebuild dev-debug/drgn/drgn-0.0.27-r2.ebuild X-VCS-Directories: dev-debug/drgn/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0f43ab559b9997b42839ff29f5ea9e5605a0bd14 X-VCS-Branch: master Date: Sat, 21 Sep 2024 05:32:40 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 20e0588e-a1ad-43c2-aa26-16c4ed8d01bb X-Archives-Hash: df0afb71c1bfc2c02e0b7ce9be41d148 commit: 0f43ab559b9997b42839ff29f5ea9e5605a0bd14 Author: Omar Sandoval <osandov <AT> osandov <DOT> com> AuthorDate: Sat Sep 21 05:00:51 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Sep 21 05:28:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f43ab55 dev-debug/drgn: fix cross emerging Pass --host to configure. Closes: https://bugs.gentoo.org/939942 Signed-off-by: Omar Sandoval <osandov <AT> osandov.com> Signed-off-by: Sam James <sam <AT> gentoo.org> dev-debug/drgn/{drgn-0.0.27-r1.ebuild => drgn-0.0.27-r2.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-debug/drgn/drgn-0.0.27-r1.ebuild b/dev-debug/drgn/drgn-0.0.27-r2.ebuild similarity index 97% rename from dev-debug/drgn/drgn-0.0.27-r1.ebuild rename to dev-debug/drgn/drgn-0.0.27-r2.ebuild index d3dfa2a25dd9..cfa41f442363 100644 --- a/dev-debug/drgn/drgn-0.0.27-r1.ebuild +++ b/dev-debug/drgn/drgn-0.0.27-r2.ebuild @@ -65,5 +65,6 @@ src_configure() { CONFIGURE_FLAGS="--disable-dependency-tracking --disable-silent-rules" CONFIGURE_FLAGS+=" --with-libkdumpfile" CONFIGURE_FLAGS+=" $(use_enable openmp)" + CONFIGURE_FLAGS+=" --host=${CHOST}" distutils-r1_src_configure }