summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/artifact.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/morphlib/artifact.py b/morphlib/artifact.py
index 4fac69c7..8c299698 100644
--- a/morphlib/artifact.py
+++ b/morphlib/artifact.py
@@ -41,20 +41,6 @@ class Artifact(object):
def metadata_basename(self, metadata_name): # pragma: no cover
return '%s.%s' % (self.basename(), metadata_name)
- def get_dependency_prefix_set(self):
- '''Collects all install prefixes of this artifact's build dependencies
-
- If any of the build dependencies of a chunk artifact are installed
- to non-standard prefixes, we need to add those prefixes to the
- PATH of the current artifact.
-
- '''
- result = set()
- for d in self.dependencies:
- if d.source.morphology['kind'] == 'chunk':
- result.add(d.source.prefix)
- return result
-
def __str__(self): # pragma: no cover
return '%s|%s' % (self.source, self.name)