diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-07-05 21:05:20 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-07-05 21:11:56 +0900 |
commit | 2fe770f6859c25cb9d93f1cb732b35d02ddaa334 (patch) | |
tree | d589151571b8485e79fc1b04127251d47ba18761 | |
parent | 4a90e5ac777140574dbddc9ab65bb23ecdbf9036 (diff) | |
download | buildstream-2fe770f6859c25cb9d93f1cb732b35d02ddaa334.tar.gz |
compose.py: Ensure include list order does not effect cache keys
-rw-r--r-- | buildstream/plugins/elements/compose.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/plugins/elements/compose.py b/buildstream/plugins/elements/compose.py index 07d781ea6..8a17bc6df 100644 --- a/buildstream/plugins/elements/compose.py +++ b/buildstream/plugins/elements/compose.py @@ -64,7 +64,7 @@ class ComposeElement(Element): def get_unique_key(self): return { 'integrate': self.integration, - 'include': self.include, + 'include': sorted(self.include), 'orphans': self.include_orphans } |