Fix #206: need to make deps AND root concrete when read in.

This commit is contained in:
Todd Gamblin 2015-12-14 21:06:32 -08:00
parent 3d39d035c1
commit 6e074a196a

View file

@ -212,8 +212,10 @@ def read_spec(self, path):
spec = Spec.from_yaml(f)
# Specs read from actual installations are always concrete
spec._normal = True
spec._concrete = True
for s in spec.traverse():
s._normal = True
s._concrete = True
return spec