summaryrefslogtreecommitdiff
path: root/morphlib/buildgraph.py
diff options
context:
space:
mode:
Diffstat (limited to 'morphlib/buildgraph.py')
-rw-r--r--morphlib/buildgraph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/buildgraph.py b/morphlib/buildgraph.py
index 444d5f5f..687dbb13 100644
--- a/morphlib/buildgraph.py
+++ b/morphlib/buildgraph.py
@@ -69,7 +69,7 @@ class BuildGraph(object):
def _realise_system_dependencies(self, system, queue, source_pool):
for stratum_name in system.morphology['strata']:
stratum = source_pool.lookup(
- system.repo.original_name,
+ system.repo_name,
system.original_ref,
'%s.morph' % stratum_name)
@@ -82,7 +82,7 @@ class BuildGraph(object):
if stratum.morphology['build-depends']:
for stratum_name in stratum.morphology['build-depends']:
other_stratum = source_pool.lookup(
- stratum.repo.original_name,
+ stratum.repo_name,
stratum.original_ref,
'%s.morph' % stratum_name)
strata.append(other_stratum)