diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-02-21 10:29:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-02-21 10:29:03 +0200 |
commit | 0dc03d406a9958adb27ff49f568685f6e80f01ce (patch) | |
tree | fe51d02935c81a27ffd82f21d0d4275432019ffe /build2/b.cxx | |
parent | 75fc95426f2028044f3e1fccef261e76cda69892 (diff) |
Add progress to dist meta-operation
Diffstat (limited to 'build2/b.cxx')
-rw-r--r-- | build2/b.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build2/b.cxx b/build2/b.cxx index 945d375..ad54922 100644 --- a/build2/b.cxx +++ b/build2/b.cxx @@ -1255,10 +1255,10 @@ main (int argc, char* argv[]) uint16_t diag (ops.structured_result () ? 0 : 1); if (mif->match != nullptr) - mif->match (mparams, a, tgs, diag); + mif->match (mparams, a, tgs, diag, true /* progress */); if (mif->execute != nullptr && !ops.match_only ()) - mif->execute (mparams, a, tgs, diag); + mif->execute (mparams, a, tgs, diag, true /* progress */); } if (mif->operation_post != nullptr) @@ -1279,10 +1279,10 @@ main (int argc, char* argv[]) uint16_t diag (ops.structured_result () ? 0 : 2); if (mif->match != nullptr) - mif->match (mparams, a, tgs, diag); + mif->match (mparams, a, tgs, diag, true /* progress */); if (mif->execute != nullptr && !ops.match_only ()) - mif->execute (mparams, a, tgs, diag); + mif->execute (mparams, a, tgs, diag, true /* progress */); } if (post_oid != 0) @@ -1304,10 +1304,10 @@ main (int argc, char* argv[]) uint16_t diag (ops.structured_result () ? 0 : 1); if (mif->match != nullptr) - mif->match (mparams, a, tgs, diag); + mif->match (mparams, a, tgs, diag, true /* progress */); if (mif->execute != nullptr && !ops.match_only ()) - mif->execute (mparams, a, tgs, diag); + mif->execute (mparams, a, tgs, diag, true /* progress */); } if (mif->operation_post != nullptr) |