aboutsummaryrefslogtreecommitdiff
path: root/build2/algorithm.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-03-07 14:37:08 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-03-07 14:37:08 +0200
commit4854da9ba94fc107ff3dcd7eac4e12cecacd9b2e (patch)
tree44c7dceeb85132c65008f94b24888b8cfc7985e7 /build2/algorithm.cxx
parentb7c0293598d45f052a41c3ed6580d98801280cd7 (diff)
Remove the depdb (.d) files when cleaning
Diffstat (limited to 'build2/algorithm.cxx')
-rw-r--r--build2/algorithm.cxx36
1 files changed, 35 insertions, 1 deletions
diff --git a/build2/algorithm.cxx b/build2/algorithm.cxx
index dab12c9..89dd029 100644
--- a/build2/algorithm.cxx
+++ b/build2/algorithm.cxx
@@ -473,7 +473,7 @@ namespace build2
target_state
perform_clean (action a, target& t)
{
- // The reverse order of update: first delete the file, then clean
+ // The reverse order of update: first remove the file, then clean
// prerequisites.
//
file& ft (dynamic_cast<file&> (t));
@@ -493,4 +493,38 @@ namespace build2
return r;
}
+
+ target_state
+ perform_clean_depdb (action a, target& t)
+ {
+ // Normally the .d file is created/updated before the target so remove it
+ // first. Also, don't print the command at verbosity level below 3.
+ //
+ file& ft (dynamic_cast<file&> (t));
+
+ path df (ft.path () + ".d");
+ target_state dr (rmfile (df, false)
+ ? target_state::changed
+ : target_state::unchanged);
+
+ // Factor the result of removing the .d file into the target state. While
+ // strictly speaking removing it doesn't change the target state, if we
+ // don't do this, then we may end up removing the file but still saying
+ // that everything is clean (e.g., if someone removes the target file but
+ // leaves .d laying around). That would be confusing.
+ //
+ target_state tr (perform_clean (a, t));
+
+ // What would also be confusing is if we didn't print any commands in
+ // this case.
+ //
+ if (tr == target_state::unchanged && dr == target_state::changed)
+ {
+ if (verb > 0 && verb < 3)
+ text << "rm " << df;
+ }
+
+ tr |= dr;
+ return tr;
+ }
}