aboutsummaryrefslogtreecommitdiff
path: root/build2/config
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/config
parent75fc95426f2028044f3e1fccef261e76cda69892 (diff)
Add progress to dist meta-operation
Diffstat (limited to 'build2/config')
-rw-r--r--build2/config/operation.cxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/build2/config/operation.cxx b/build2/config/operation.cxx
index a284f65..65592c5 100644
--- a/build2/config/operation.cxx
+++ b/build2/config/operation.cxx
@@ -348,13 +348,14 @@ namespace build2
}
static void
- configure_match (const values&, action, action_targets&, uint16_t)
+ configure_match (const values&, action, action_targets&, uint16_t, bool)
{
// Don't match anything -- see execute ().
}
static void
- configure_execute (const values&, action a, action_targets& ts, uint16_t)
+ configure_execute (const values&, action a, action_targets& ts,
+ uint16_t, bool)
{
// Match rules to configure every operation supported by each
// project. Note that we are not calling operation_pre/post()
@@ -497,7 +498,7 @@ namespace build2
}
static void
- disfigure_match (const values&, action, action_targets&, uint16_t)
+ disfigure_match (const values&, action, action_targets&, uint16_t, bool)
{
}
@@ -595,10 +596,8 @@ namespace build2
}
static void
- disfigure_execute (const values&,
- action a,
- action_targets& ts,
- uint16_t diag)
+ disfigure_execute (const values&, action a, action_targets& ts,
+ uint16_t diag, bool)
{
tracer trace ("disfigure_execute");