diff options
author | Martin Aumüller <aumuell@reserv.at> | 2023-09-07 07:48:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-07 01:48:14 -0400 |
commit | 4429e17db053fcf7ec591ce3abe8ffc7733c0a25 (patch) | |
tree | 2ffd14a6d8e23b1d32ce31aa9c0374d233ec37e5 /var | |
parent | 65dd6e11969c5d880fad09c1d936a2651fa7d0cd (diff) | |
download | spack-4429e17db053fcf7ec591ce3abe8ffc7733c0a25.tar.gz spack-4429e17db053fcf7ec591ce3abe8ffc7733c0a25.tar.bz2 spack-4429e17db053fcf7ec591ce3abe8ffc7733c0a25.tar.xz spack-4429e17db053fcf7ec591ce3abe8ffc7733c0a25.zip |
lua: unzip also required during build (#39802)
Unzip required during build otherwise configuration of luarocks fails during installation of lua@5.3.6 on ubuntu 22.04 w/o system unzip.
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/lua/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/lua/package.py b/var/spack/repos/builtin/packages/lua/package.py index 60b13628d2..ab65586205 100644 --- a/var/spack/repos/builtin/packages/lua/package.py +++ b/var/spack/repos/builtin/packages/lua/package.py @@ -53,7 +53,7 @@ class LuaImplPackage(MakefilePackage): return os.path.join("share", self.lua_dir_name, self.__verdir()) # luarocks needs unzip for some packages (e.g. lua-luaposix) - depends_on("unzip", type="run") + depends_on("unzip", type=("build", "run")) # luarocks needs a fetcher (curl/wget), unfortunately I have not found # how to force a choice for curl or wget, but curl seems the default. |