summaryrefslogtreecommitdiff
path: root/morphlib/morphloader.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/morphloader.py')
-rw-r--r--morphlib/morphloader.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/morphlib/morphloader.py b/morphlib/morphloader.py
index f9c71384..7bd5c37a 100644
--- a/morphlib/morphloader.py
+++ b/morphlib/morphloader.py
@@ -698,8 +698,8 @@ class MorphologyLoader(object):
def _set_stratum_defaults(self, morph):
for spec in morph['chunks']:
- if 'repo' not in spec:
- spec['repo'] = spec['name']
+ if 'name' not in spec:
+ spec['name'] = spec['repo']
if 'build-mode' not in spec:
spec['build-mode'] = \
self._static_defaults['chunk']['build-mode']
@@ -709,8 +709,8 @@ class MorphologyLoader(object):
def _unset_stratum_defaults(self, morph):
for spec in morph['chunks']:
- if 'repo' in spec and spec['repo'] == spec['name']:
- del spec['repo']
+ if 'name' in spec and spec['name'] == spec['repo']:
+ del spec['name']
if 'build-mode' in spec and spec['build-mode'] == \
self._static_defaults['chunk']['build-mode']:
del spec['build-mode']