Skip to content
Snippets Groups Projects
Commit 1597d676 authored by Justin M Wozniak's avatar Justin M Wozniak Committed by Todd Gamblin
Browse files

stc and turbine: fix depends_on(type) (#9537)

parent ef11d27f
No related branches found
No related tags found
No related merge requests found
...@@ -34,10 +34,10 @@ class Stc(AutotoolsPackage): ...@@ -34,10 +34,10 @@ class Stc(AutotoolsPackage):
version('0.8.2', '883b0657f1aac9b81158ef0a8989be4c') version('0.8.2', '883b0657f1aac9b81158ef0a8989be4c')
depends_on('java') depends_on('java', type=('build', 'run'))
depends_on('ant') depends_on('ant', type='build')
depends_on('turbine') depends_on('turbine', type=('build', 'run'))
depends_on('zsh') depends_on('zsh', type=('build', 'run'))
def configure_args(self): def configure_args(self):
args = ['--with-turbine=' + self.spec['turbine'].prefix] args = ['--with-turbine=' + self.spec['turbine'].prefix]
......
...@@ -43,8 +43,8 @@ class Turbine(AutotoolsPackage): ...@@ -43,8 +43,8 @@ class Turbine(AutotoolsPackage):
depends_on('adlbx@:0.8.0', when='@:1.1.0') depends_on('adlbx@:0.8.0', when='@:1.1.0')
depends_on('adlbx', when='@1.2.1:') depends_on('adlbx', when='@1.2.1:')
depends_on('adlbx') depends_on('adlbx')
depends_on('tcl') depends_on('tcl', type=('build', 'run'))
depends_on('zsh') depends_on('zsh', type=('build', 'run'))
depends_on('swig', type='build') depends_on('swig', type='build')
depends_on('python', when='+python') depends_on('python', when='+python')
depends_on('r', when='+r') depends_on('r', when='+r')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment