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')`
This commit is contained in:

committed by
Todd Gamblin

parent
68baac0549
commit
402dfe30f9
@@ -50,7 +50,7 @@ class Stat(Package):
|
||||
depends_on('dyninst@8.2.1+stat_dysect', when='+dysect')
|
||||
depends_on('graphlib@2.0.0', when='@2.0.0:2.2.0')
|
||||
depends_on('graphlib@3.0.0', when='@3:')
|
||||
depends_on('graphviz', type=alldeps)
|
||||
depends_on('graphviz', type=('build', 'link', 'run'))
|
||||
depends_on('launchmon')
|
||||
depends_on('mrnet')
|
||||
depends_on('python')
|
||||
|
Reference in New Issue
Block a user