diff options
Diffstat (limited to 'build2/algorithm.cxx')
-rw-r--r-- | build2/algorithm.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/build2/algorithm.cxx b/build2/algorithm.cxx index e702836..fa9787b 100644 --- a/build2/algorithm.cxx +++ b/build2/algorithm.cxx @@ -840,7 +840,13 @@ namespace build2 ts = t.recipe_ (a, t); - target_count.fetch_sub (1, memory_order_relaxed); + // Decrement the target count (see target::recipe() for details). + // + { + recipe_function** f (t.recipe_.target<recipe_function*> ()); + if (f == nullptr || *f != &group_action) + target_count.fetch_sub (1, memory_order_relaxed); + } // See the recipe documentation for details on what's going on here. // Note that if the result is group, then the group's state can be |