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 26A1615817D for ; Mon, 17 Jun 2024 16:04:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B47DE2A53; Mon, 17 Jun 2024 16:04:14 +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 05B95E2A53 for ; Mon, 17 Jun 2024 16:04:14 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3A0CA335CB9 for ; Mon, 17 Jun 2024 16:04:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96D82158 for ; Mon, 17 Jun 2024 16:04:11 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1718639978.63b5ef558d91d9387b5b8396375351741ea87ed1.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/ecm.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 63b5ef558d91d9387b5b8396375351741ea87ed1 X-VCS-Branch: master Date: Mon, 17 Jun 2024 16:04:11 +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: 92480928-eddd-4f3b-8096-a67f5083657a X-Archives-Hash: 622db0f2a06e68fbc1799e003c188195 commit: 63b5ef558d91d9387b5b8396375351741ea87ed1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Jun 17 15:59:38 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jun 17 15:59:38 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=63b5ef55 ecm.eclass: Fix _ecm_check_gcc_version Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/ecm.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass index e74f68cf3d..87a2529603 100644 --- a/eclass/ecm.eclass +++ b/eclass/ecm.eclass @@ -307,7 +307,7 @@ unset COMMONDEPEND # @DESCRIPTION: # Determine if the current GCC version is acceptable, otherwise die. _ecm_check_gcc_version() { - if [[ ${MERGE_TYPE} != binary && -v ${KDE_GCC_MINIMAL} ]] && tc-is-gcc; then + if [[ ${MERGE_TYPE} != binary && -v KDE_GCC_MINIMAL ]] && tc-is-gcc; then local version=$(gcc-version)