summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Pavel <rspavel@lanl.gov>2020-08-19 00:23:56 -0600
committerGitHub <noreply@github.com>2020-08-19 08:23:56 +0200
commitbc34ab470140d120bf67007b611eb0a41418dc7d (patch)
tree12d44c8923d781e165efb4d00fe538eb8acc5380
parentbef560636df1a029ea398b657ae9f0d6e1f82ca4 (diff)
downloadspack-bc34ab470140d120bf67007b611eb0a41418dc7d.tar.gz
spack-bc34ab470140d120bf67007b611eb0a41418dc7d.tar.bz2
spack-bc34ab470140d120bf67007b611eb0a41418dc7d.tar.xz
spack-bc34ab470140d120bf67007b611eb0a41418dc7d.zip
lua: specified better the dependency on ncurses (needs +termlib) (#18163)
Semi-recently the lua spackage was updated to explicitly add libtinfow to the lua build line. Ncurses provides this but only when the +termlib variant is enabled
-rw-r--r--var/spack/repos/builtin/packages/lua/package.py2
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 28554dae5b..f752fbee32 100644
--- a/var/spack/repos/builtin/packages/lua/package.py
+++ b/var/spack/repos/builtin/packages/lua/package.py
@@ -32,7 +32,7 @@ class Lua(Package):
extendable = True
- depends_on('ncurses')
+ depends_on('ncurses+termlib')
depends_on('readline')
# luarocks needs unzip for some packages (e.g. lua-luaposix)
depends_on('unzip', type='run')