aboutsummaryrefslogtreecommitdiff
path: root/build2/b.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-02-21 10:29:03 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-02-21 10:29:03 +0200
commit0dc03d406a9958adb27ff49f568685f6e80f01ce (patch)
treefe51d02935c81a27ffd82f21d0d4275432019ffe /build2/b.cxx
parent75fc95426f2028044f3e1fccef261e76cda69892 (diff)
Add progress to dist meta-operation
Diffstat (limited to 'build2/b.cxx')
-rw-r--r--build2/b.cxx12
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)