Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: app-editors/helix/
Date: Thu, 16 Mar 2023 08:42:00
Message-Id: 1678909635.3216d79f8618bceee09ca7533c4b38c82b3b66d7.flow@gentoo
1 commit: 3216d79f8618bceee09ca7533c4b38c82b3b66d7
2 Author: Jonas Frei <freijon <AT> pm <DOT> me>
3 AuthorDate: Wed Mar 15 19:47:15 2023 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 15 19:47:15 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3216d79f
7
8 app-editors/helix: Fixes grammar build with 'debug' USE flag
9
10 Closes: https://bugs.gentoo.org/901007
11 Signed-off-by: Jonas Frei <freijon <AT> pm.me>
12
13 app-editors/helix/helix-22.12.ebuild | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/app-editors/helix/helix-22.12.ebuild b/app-editors/helix/helix-22.12.ebuild
17 index 70803a05a..324db4a34 100644
18 --- a/app-editors/helix/helix-22.12.ebuild
19 +++ b/app-editors/helix/helix-22.12.ebuild
20 @@ -418,7 +418,7 @@ src_compile() {
21 export HELIX_DISABLE_AUTO_GRAMMAR_BUILD=1
22 export HELIX_RUNTIME="${S}/runtime"
23 cargo_src_compile
24 - use grammar && ( target/release/hx --grammar build || die )
25 + use grammar && ( target/$(usex debug debug release)/hx --grammar build || die )
26 }
27
28 src_install() {