aboutsummaryrefslogtreecommitdiff
path: root/build2/context.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/context.cxx')
-rw-r--r--build2/context.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/build2/context.cxx b/build2/context.cxx
index a8cf042..066e620 100644
--- a/build2/context.cxx
+++ b/build2/context.cxx
@@ -498,7 +498,9 @@ namespace build2
//
string orig (
ops.config_guess_specified ()
- ? run<string> (3, ops.config_guess (), [](string& l) {return move (l);})
+ ? run<string> (3,
+ ops.config_guess (),
+ [](string& l, bool) {return move (l);})
: BUILD2_HOST_TRIPLET);
l5 ([&]{trace << "original host: '" << orig << "'";});