From 26a038417107cf0a1a49d0b9ada83d55a7998ac4 Mon Sep 17 00:00:00 2001 From: Matthias Wolf Date: Wed, 16 Nov 2022 09:30:08 -0500 Subject: neovim: fix build dependencies (#33935) Buildin neovim@0.8.0 complains (for me) about Lua's lpeg and mpack packages not being available at build time. Removing the link-only setting in the dependencies for these two packages fixes the build for me. --- var/spack/repos/builtin/packages/neovim/package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/var/spack/repos/builtin/packages/neovim/package.py b/var/spack/repos/builtin/packages/neovim/package.py index ef39158012..85ec95a58b 100644 --- a/var/spack/repos/builtin/packages/neovim/package.py +++ b/var/spack/repos/builtin/packages/neovim/package.py @@ -99,8 +99,8 @@ class Neovim(CMakePackage): depends_on("gettext", type=("build", "link")) depends_on("gperf", type="link") depends_on("jemalloc", type="link", when="platform=linux") - depends_on("lua-lpeg", type="link") - depends_on("lua-mpack", type="link") + depends_on("lua-lpeg") + depends_on("lua-mpack") depends_on("libiconv", type="link") depends_on("libtermkey", type="link") depends_on("libuv", type="link") -- cgit v1.2.3-60-g2f50