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 8435715A7D9 for ; Thu, 16 Mar 2023 08:42:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 425EDE084A; Thu, 16 Mar 2023 08:41:56 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 123EDE0845 for ; Thu, 16 Mar 2023 08:41:56 +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 32192340B77 for ; Thu, 16 Mar 2023 08:41:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E930C904 for ; Thu, 16 Mar 2023 08:41:51 +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: <1678909635.3216d79f8618bceee09ca7533c4b38c82b3b66d7.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-editors/helix/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-editors/helix/helix-22.12.ebuild X-VCS-Directories: app-editors/helix/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 3216d79f8618bceee09ca7533c4b38c82b3b66d7 X-VCS-Branch: master Date: Thu, 16 Mar 2023 08:41:51 +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: d0405272-d1b8-491d-9afe-9545d1b7fadf X-Archives-Hash: e34ad537886af799a6ef60202241a625 commit: 3216d79f8618bceee09ca7533c4b38c82b3b66d7 Author: Jonas Frei pm me> AuthorDate: Wed Mar 15 19:47:15 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Mar 15 19:47:15 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3216d79f app-editors/helix: Fixes grammar build with 'debug' USE flag Closes: https://bugs.gentoo.org/901007 Signed-off-by: Jonas Frei pm.me> app-editors/helix/helix-22.12.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-editors/helix/helix-22.12.ebuild b/app-editors/helix/helix-22.12.ebuild index 70803a05a..324db4a34 100644 --- a/app-editors/helix/helix-22.12.ebuild +++ b/app-editors/helix/helix-22.12.ebuild @@ -418,7 +418,7 @@ src_compile() { export HELIX_DISABLE_AUTO_GRAMMAR_BUILD=1 export HELIX_RUNTIME="${S}/runtime" cargo_src_compile - use grammar && ( target/release/hx --grammar build || die ) + use grammar && ( target/$(usex debug debug release)/hx --grammar build || die ) } src_install() {