diff options
Diffstat (limited to 'build/target.cxx')
-rw-r--r-- | build/target.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/build/target.cxx b/build/target.cxx index 236b729..37cec8c 100644 --- a/build/target.cxx +++ b/build/target.cxx @@ -70,8 +70,7 @@ namespace build // Also reset the target state. If this is a noop recipe, then // mark the target unchanged so that we don't waste time executing - // the recipe. If this is a group recipe, then mark the state as - // coming from the group. + // the recipe. // raw_state = target_state::unknown; @@ -79,8 +78,6 @@ namespace build { if (*f == &noop_action) raw_state = target_state::unchanged; - else if (*f == &group_action) - raw_state = target_state::group; } // This one is tricky: we don't want to reset the dependents count |