aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/transformer.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-06-28 14:03:43 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-06-29 08:09:02 +0000
commitfac2f0af3d8a051bba02fe448e984a3c0e66739f (patch)
tree70fd11b79cb813a52a7b14eca50fc624f702789d /src/lib/corelib/buildgraph/transformer.cpp
parentc5d9a5f566bd960b987c2bbd1ec1fb46acf8ea04 (diff)
Store the "out of date" flag per transformer rather than per artifact
That's a better fit. Change-Id: I3eff4ce461342b2966196da4e9aeff35544a38c4 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/lib/corelib/buildgraph/transformer.cpp')
-rw-r--r--src/lib/corelib/buildgraph/transformer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/corelib/buildgraph/transformer.cpp b/src/lib/corelib/buildgraph/transformer.cpp
index fab7431ab..262038160 100644
--- a/src/lib/corelib/buildgraph/transformer.cpp
+++ b/src/lib/corelib/buildgraph/transformer.cpp
@@ -296,6 +296,7 @@ void Transformer::rescueChangeTrackingData(const TransformerConstPtr &other)
lastPrepareScriptExecutionTime = other->lastPrepareScriptExecutionTime;
prepareScriptNeedsChangeTracking = other->prepareScriptNeedsChangeTracking;
commandsNeedChangeTracking = other->commandsNeedChangeTracking;
+ markedForRerun = other->markedForRerun;
exportedModulesAccessedInPrepareScript = other->exportedModulesAccessedInPrepareScript;
exportedModulesAccessedInCommands = other->exportedModulesAccessedInCommands;
}