summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--buildstream/element.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/element.py b/buildstream/element.py
index 35edba1b9..6e51da9d9 100644
--- a/buildstream/element.py
+++ b/buildstream/element.py
@@ -692,7 +692,7 @@ class Element(Plugin):
# No cache keys for dependencies which have no cache keys
dependencies = [
- e._get_cache_key() for e in self.dependencies(Scope.BUILD, recurse=False)
+ e._get_cache_key() for e in self.dependencies(Scope.BUILD)
]
for dep in dependencies:
if dep is None: