summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wolf <matthias.wolf@epfl.ch>2022-11-16 09:30:08 -0500
committerGitHub <noreply@github.com>2022-11-16 07:30:08 -0700
commit26a038417107cf0a1a49d0b9ada83d55a7998ac4 (patch)
tree055863cd934ad94f76488e9511295cf54508746f
parentd18cccf7c59d2c18d6f3bd12add7e5b69455c021 (diff)
downloadspack-26a038417107cf0a1a49d0b9ada83d55a7998ac4.tar.gz
spack-26a038417107cf0a1a49d0b9ada83d55a7998ac4.tar.bz2
spack-26a038417107cf0a1a49d0b9ada83d55a7998ac4.tar.xz
spack-26a038417107cf0a1a49d0b9ada83d55a7998ac4.zip
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.
-rw-r--r--var/spack/repos/builtin/packages/neovim/package.py4
1 files 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")