diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-02-12 17:15:27 +0000 |
---|---|---|
committer | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-02-12 17:26:48 +0000 |
commit | 0422739553609665d5cc7fc26a4aebdadb4dfeea (patch) | |
tree | 5ac8d20c813cbf1f54dbf297d6dea78eb059a507 /buildstream/_loader/loadelement.py | |
parent | 022a59f0919333cb98cf5f43f1969191f6805eb6 (diff) | |
download | buildstream-bschubert/non-recursive-sort.tar.gz |
Make sorting dependencies non recursivebschubert/non-recursive-sort
Diffstat (limited to 'buildstream/_loader/loadelement.py')
-rw-r--r-- | buildstream/_loader/loadelement.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/buildstream/_loader/loadelement.py b/buildstream/_loader/loadelement.py index 17154ee64..9e47c062e 100644 --- a/buildstream/_loader/loadelement.py +++ b/buildstream/_loader/loadelement.py @@ -69,6 +69,7 @@ class LoadElement(): self.full_name = None # The element full name (with associated junction) self.deps = None # The list of Dependency objects self.node_id = next(self._counter) + self.has_sorted_dependencies = False # Whether the element had his dependencies sorted already # # Private members |