From 53dc295f1caf88802e244d75317beaee1e7116b9 Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Fri, 7 Jan 2011 14:00:21 -0800 Subject: [PATCH] rebuild when command lines change --- src/ninja_jumble.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/ninja_jumble.cc b/src/ninja_jumble.cc index 66cfd6a..dc41f2e 100644 --- a/src/ninja_jumble.cc +++ b/src/ninja_jumble.cc @@ -151,6 +151,8 @@ bool Edge::RecomputeDirty(State* state, DiskInterface* disk_interface, } } + string command = EvaluateCommand(); + assert(!outputs_.empty()); for (vector::iterator i = outputs_.begin(); i != outputs_.end(); ++i) { // We may have other outputs, that our input-recursive traversal hasn't hit @@ -162,6 +164,14 @@ bool Edge::RecomputeDirty(State* state, DiskInterface* disk_interface, if (dirty || !(*i)->file_->exists() || (*i)->file_->mtime_ < most_recent_input) { (*i)->dirty_ = true; + } else { + // May also be dirty due to the command changing since the last build. + BuildLog::LogEntry* entry; + if (state->build_log_ && + (entry = state->build_log_->LookupByOutput((*i)->file_->path_))) { + if (command != entry->command) + (*i)->dirty_ = true; + } } } return true; -- 2.7.4