commit: 7b054106ef5a1fd742fb23886173d8c5a842d715 Author: Brahmajit Das <brahmajit.xyz <AT> gmail <DOT> com> AuthorDate: Wed Sep 6 09:52:20 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Sep 6 09:54:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b054106
app-editors/neovim: fix finding luajit in live Fix 'luajit: No such file or directory'. This is most probably due to upstream commit https://github.com/neovim/neovim/commit/3e80b39a8ef9d33090800642d25fadbd282af337 Signed-off-by: Brahmajit Das <brahmajit.xyz <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/32646 Signed-off-by: Sam James <sam <AT> gentoo.org> app-editors/neovim/neovim-9999.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/app-editors/neovim/neovim-9999.ebuild b/app-editors/neovim/neovim-9999.ebuild index 154062cd1320..f341eed583f4 100644 --- a/app-editors/neovim/neovim-9999.ebuild +++ b/app-editors/neovim/neovim-9999.ebuild @@ -82,6 +82,7 @@ src_prepare() { } src_configure() { + ln -s "${BROOT}"/usr/bin/luajit "${BUILD_DIR}"/luajit || die # Upstream default to LTO on non-debug builds # Let's expose it as a USE flag because upstream # have preferences for how we should use LTO
