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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DA2071580FD for ; Sat, 28 Dec 2024 19:43:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F9C8E0794; Sat, 28 Dec 2024 19:43:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 68464E0794 for ; Sat, 28 Dec 2024 19:43:39 +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 4E218335DC5 for ; Sat, 28 Dec 2024 19:43:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A94E7126A for ; Sat, 28 Dec 2024 19:43:36 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1735415005.648bcbb7da7f164dfc27dd18326840808c06d01d.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/ada.eclass X-VCS-Directories: eclass/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 648bcbb7da7f164dfc27dd18326840808c06d01d X-VCS-Branch: master Date: Sat, 28 Dec 2024 19:43:36 +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: 7eefcd19-0358-453a-8ba1-3b0a547dffee X-Archives-Hash: 99fc1fc1c0d3ba33a27c430295173a7e commit: 648bcbb7da7f164dfc27dd18326840808c06d01d Author: Alfredo Tupone gentoo org> AuthorDate: Sat Dec 28 19:42:59 2024 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sat Dec 28 19:43:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648bcbb7 ada.eclass: add CHOST to gnatmake Signed-off-by: Alfredo Tupone gentoo.org> eclass/ada.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/ada.eclass b/eclass/ada.eclass index 9206bfcc42ca..3d22dd5d2a61 100644 --- a/eclass/ada.eclass +++ b/eclass/ada.eclass @@ -282,7 +282,7 @@ ada_export() { debug-print "${FUNCNAME}: GNATBIND = ${GNATBIND}" ;; GNATMAKE) - export GNATMAKE=${EPREFIX}/usr/bin/gnatmake-${gcc_pv} + export GNATMAKE=${EPREFIX}/usr/bin/${CHOST}-gnatmake-${gcc_pv} debug-print "${FUNCNAME}: GNATMAKE = ${GNATMAKE}" ;; GNATLS)