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 69222158064 for ; Tue, 30 Apr 2024 19:26:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CE77E29CF; Tue, 30 Apr 2024 19:26:00 +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 5B735E29CF for ; Tue, 30 Apr 2024 19:26:00 +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 4B5B233BEFF for ; Tue, 30 Apr 2024 19:25:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E4B993E for ; Tue, 30 Apr 2024 19:25:57 +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: <1714505098.c84ba1bebef686f74503ec61c9b8eb86ed2adbff.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: c84ba1bebef686f74503ec61c9b8eb86ed2adbff X-VCS-Branch: master Date: Tue, 30 Apr 2024 19:25:57 +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: e221f3c1-c767-4d0f-a156-1f841c4dd879 X-Archives-Hash: df31cd569746b01bcb912e33e6ed38c1 commit: c84ba1bebef686f74503ec61c9b8eb86ed2adbff Author: Alfredo Tupone gentoo org> AuthorDate: Fri Mar 22 18:02:23 2024 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Tue Apr 30 19:24:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c84ba1be Building the ada compiler require both c++ and ada USE flags enabled. Otherwise drop ada. Signed-off-by: Alfredo Tupone gentoo.org> eclass/toolchain.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index b51f146ce25b..4d057de7a0f3 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -2507,7 +2507,7 @@ _tc_use_if_iuse() { is_ada() { gcc-lang-supported ada || return 1 - _tc_use_if_iuse ada + _tc_use_if_iuse cxx && _tc_use_if_iuse ada } is_cxx() {