aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-08-19 23:20:22 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-08-19 23:20:22 +0300
commit7d2d419820912e54cda370c97829af573d9f62ae (patch)
tree7786186093005dbd5a42f3054c4fb70f0ae921d6 /build2
parent8283e34747d6409124517a217bb19354311030b2 (diff)
Revert previous (erroneously pushed to master) commit
Diffstat (limited to 'build2')
-rw-r--r--build2/b.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/build2/b.cxx b/build2/b.cxx
index f939763..15844dc 100644
--- a/build2/b.cxx
+++ b/build2/b.cxx
@@ -375,11 +375,10 @@ main (int argc, char* argv[])
path::home_directory (), // The home variable is not assigned yet.
default_options_files {{path ("b.options")},
nullopt /* start_dir */},
- [&trace, &verbosity] (const path& f, bool remote, bool overwrite)
+ [&trace, &verbosity] (const path& f, bool remote)
{
if (verbosity () >= 3)
- trace << (overwrite ? "overwriting " : "loading ")
- << (remote ? "remote " : "local ") << f;
+ trace << "loading " << (remote ? "remote " : "local ") << f;
}),
ops);
}