summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/lmod
diff options
context:
space:
mode:
authorElizabeth Fischer <rpf2116@columbia.edu>2017-01-07 22:59:02 -0500
committerTodd Gamblin <tgamblin@llnl.gov>2017-01-07 19:59:02 -0800
commit402dfe30f99f129d310ccde3381ea7ac8c5fca53 (patch)
tree6d82df90f623c68c99abe1a16457793d41cdeb66 /var/spack/repos/builtin/packages/lmod
parent68baac0549e816dce68ebab40c701b92f5f46dec (diff)
downloadspack-402dfe30f99f129d310ccde3381ea7ac8c5fca53.tar.gz
spack-402dfe30f99f129d310ccde3381ea7ac8c5fca53.tar.bz2
spack-402dfe30f99f129d310ccde3381ea7ac8c5fca53.tar.xz
spack-402dfe30f99f129d310ccde3381ea7ac8c5fca53.zip
Get Rid of nobuild, nolink, and alldeps (#2765)
* Removing the nobuild, nolink, and alldeps dependency types in favor of being explicit. * This will help with maintenance going forward, as adding more dependency types won't affect existing declared dependencies in weird ways. * default deptype is still `('build', 'link')`
Diffstat (limited to 'var/spack/repos/builtin/packages/lmod')
-rw-r--r--var/spack/repos/builtin/packages/lmod/package.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/lmod/package.py b/var/spack/repos/builtin/packages/lmod/package.py
index c2daca80a5..9ac270bab5 100644
--- a/var/spack/repos/builtin/packages/lmod/package.py
+++ b/var/spack/repos/builtin/packages/lmod/package.py
@@ -44,9 +44,9 @@ class Lmod(Package):
version('6.0.1', '91abf52fe5033bd419ffe2842ebe7af9')
depends_on('lua@5.2:')
- depends_on('lua-luaposix', type=nolink)
- depends_on('lua-luafilesystem', type=nolink)
- depends_on('tcl', type=nolink)
+ depends_on('lua-luaposix', type=('build', 'run'))
+ depends_on('lua-luafilesystem', type=('build', 'run'))
+ depends_on('tcl', type=('build', 'run'))
parallel = False