aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/executor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/buildgraph/executor.cpp')
-rw-r--r--src/lib/corelib/buildgraph/executor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/corelib/buildgraph/executor.cpp b/src/lib/corelib/buildgraph/executor.cpp
index e774f71e7..db74d1715 100644
--- a/src/lib/corelib/buildgraph/executor.cpp
+++ b/src/lib/corelib/buildgraph/executor.cpp
@@ -453,6 +453,8 @@ void Executor::executeRuleNode(RuleNode *ruleNode)
for (const Artifact * const parent : artifact->parentArtifacts()) {
if (parent->transformer->rule != ruleNode->rule())
continue;
+ if (!parent->alwaysUpdated)
+ continue;
if (parent->timestamp() < artifact->timestamp()) {
changedInputArtifacts += artifact;
break;