summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-07-29 12:36:45 +0100
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-07-29 12:36:45 +0100
commitba79eff31fae07b6266236a7d6f28a2f441f32bc (patch)
treea4265101517d041e032d8778531d2d386c1f7552
parentd66eb16816395eb834689b833ede585f1f63fa22 (diff)
downloadbuildstream-ba79eff31fae07b6266236a7d6f28a2f441f32bc.tar.gz
compose.py plugin: Mark for strict_rebuild
-rw-r--r--buildstream/plugins/elements/compose.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/buildstream/plugins/elements/compose.py b/buildstream/plugins/elements/compose.py
index 8a17bc6df..ecbdf084b 100644
--- a/buildstream/plugins/elements/compose.py
+++ b/buildstream/plugins/elements/compose.py
@@ -41,6 +41,8 @@ from buildstream import Element, ElementError, Scope
# Element implementation for the 'compose' kind.
class ComposeElement(Element):
+ strict_rebuild = True
+
def configure(self, node):
# We name this variable 'integration' only to avoid
# collision with the Element.integrate() method.