summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Frei <freijon@pm.me>2023-03-16 20:46:30 +0100
committerPatrick McLean <chutzpah@gentoo.org>2023-03-16 20:27:51 -0700
commit3634b17e73827f3c06a7bd96ce70a06665ffd49e (patch)
tree06d9311164ccad49e6af1c6ac924cc644ec2192c
parentdev-lang/ocaml: Stabilize 4.05.0-r9 x86, #901711 (diff)
downloadgentoo-3634b17e73827f3c06a7bd96ce70a06665ffd49e.tar.gz
gentoo-3634b17e73827f3c06a7bd96ce70a06665ffd49e.tar.bz2
gentoo-3634b17e73827f3c06a7bd96ce70a06665ffd49e.zip
app-editors/helix: Fix grammar build with 'debug' USE flag
Bug: https://bugs.gentoo.org/901007 Signed-off-by: Jonas Frei <freijon@pm.me> Closes: https://github.com/gentoo/gentoo/pull/30164 Signed-off-by: Patrick McLean <chutzpah@gentoo.org>
-rw-r--r--app-editors/helix/helix-22.12.ebuild2
1 files changed, 1 insertions, 1 deletions
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
}