diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-16 06:37:24 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-16 06:37:24 +0200 |
commit | 2388b2fc468e420372f4b15085f04f2203a44222 (patch) | |
tree | 5c3761855d76d90cc743275bea92899e82760c19 /libbuild2 | |
parent | b8d4cb75ca4f6214a0cac22c96691e770d5940d9 (diff) |
Fix over-tight assumption in standard operation match()
Diffstat (limited to 'libbuild2')
-rw-r--r-- | libbuild2/operation.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbuild2/operation.cxx b/libbuild2/operation.cxx index 428f459..ae0f2d8 100644 --- a/libbuild2/operation.cxx +++ b/libbuild2/operation.cxx @@ -226,6 +226,7 @@ namespace build2 } case target_state::unknown: case target_state::unchanged: + case target_state::changed: // Can happend for ad hoc group member. { break; // Matched successfully. } |