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 872E815A7D9 for ; Fri, 17 Mar 2023 03:28:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9170E09EA; Fri, 17 Mar 2023 03:28:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 98A30E09EA for ; Fri, 17 Mar 2023 03:28:08 +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 8A068340F8B for ; Fri, 17 Mar 2023 03:28:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7FE873E for ; Fri, 17 Mar 2023 03:28:05 +0000 (UTC) From: "Patrick McLean" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick McLean" Message-ID: <1679023671.3634b17e73827f3c06a7bd96ce70a06665ffd49e.chutzpah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/helix/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/helix/helix-22.12.ebuild X-VCS-Directories: app-editors/helix/ X-VCS-Committer: chutzpah X-VCS-Committer-Name: Patrick McLean X-VCS-Revision: 3634b17e73827f3c06a7bd96ce70a06665ffd49e X-VCS-Branch: master Date: Fri, 17 Mar 2023 03:28:05 +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: c213a4ab-1921-4d81-83af-3d84c6ea0a54 X-Archives-Hash: 34064985f7d2bec0dcad32ae0a6ae396 commit: 3634b17e73827f3c06a7bd96ce70a06665ffd49e Author: Jonas Frei pm me> AuthorDate: Thu Mar 16 19:46:30 2023 +0000 Commit: Patrick McLean gentoo org> CommitDate: Fri Mar 17 03:27:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3634b17e app-editors/helix: Fix grammar build with 'debug' USE flag Bug: https://bugs.gentoo.org/901007 Signed-off-by: Jonas Frei pm.me> Closes: https://github.com/gentoo/gentoo/pull/30164 Signed-off-by: Patrick McLean gentoo.org> 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 102a5d9c2aff..7c0fddeac603 100644 --- a/app-editors/helix/helix-22.12.ebuild +++ b/app-editors/helix/helix-22.12.ebuild @@ -434,7 +434,7 @@ src_compile() { cargo_src_compile if use grammar; then - target/release/hx --grammar build || die + target/$(usex debug debug release)/hx --grammar build || die fi }