Compare commits
2 Commits
packages/c
...
v0.9.1
Author | SHA1 | Date | |
---|---|---|---|
![]() |
164da8eed1 | ||
![]() |
6e1257ed2d |
@@ -105,7 +105,7 @@
|
|||||||
|
|
||||||
# Version information
|
# Version information
|
||||||
from spack.version import Version
|
from spack.version import Version
|
||||||
spack_version = Version("0.9")
|
spack_version = Version("0.9.1")
|
||||||
|
|
||||||
#
|
#
|
||||||
# Executables used by Spack
|
# Executables used by Spack
|
||||||
|
@@ -170,7 +170,7 @@ def find(parser, args):
|
|||||||
if args.unknown:
|
if args.unknown:
|
||||||
known = False
|
known = False
|
||||||
|
|
||||||
explicit = None
|
explicit = any
|
||||||
if args.explicit:
|
if args.explicit:
|
||||||
explicit = False
|
explicit = False
|
||||||
if args.implicit:
|
if args.implicit:
|
||||||
|
@@ -717,8 +717,9 @@ def from_node_dict(node):
|
|||||||
else:
|
else:
|
||||||
spec.compiler = CompilerSpec.from_dict(node)
|
spec.compiler = CompilerSpec.from_dict(node)
|
||||||
|
|
||||||
for name, enabled in node['variants'].items():
|
if 'variants' in node:
|
||||||
spec.variants[name] = VariantSpec(name, enabled)
|
for name, enabled in node['variants'].items():
|
||||||
|
spec.variants[name] = VariantSpec(name, enabled)
|
||||||
|
|
||||||
return spec
|
return spec
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user