diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-10-27 14:17:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-27 06:17:54 -0600 |
commit | 605411a9fb10a8f12e56d428a5ea93e4dac07ca3 (patch) | |
tree | a9ab0e883be160cea511eaf730e2900a3224aa1a /lib | |
parent | df1d23357337f0dc1aeac815c956fb69db86c5cd (diff) | |
download | spack-605411a9fb10a8f12e56d428a5ea93e4dac07ca3.tar.gz spack-605411a9fb10a8f12e56d428a5ea93e4dac07ca3.tar.bz2 spack-605411a9fb10a8f12e56d428a5ea93e4dac07ca3.tar.xz spack-605411a9fb10a8f12e56d428a5ea93e4dac07ca3.zip |
LuaPackage: add missing attribute (#33551)
fixes #33544
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/build_systems/lua.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/spack/spack/build_systems/lua.py b/lib/spack/spack/build_systems/lua.py index 48fa106881..f1c3e43704 100644 --- a/lib/spack/spack/build_systems/lua.py +++ b/lib/spack/spack/build_systems/lua.py @@ -20,6 +20,9 @@ class LuaPackage(spack.package_base.PackageBase): #: system base class build_system_class = "LuaPackage" + #: Legacy buildsystem attribute used to deserialize and install old specs + legacy_buildsystem = "lua" + list_depth = 1 # LuaRocks requires at least one level of spidering to find versions build_system("lua") |