aboutsummaryrefslogtreecommitdiff
path: root/build2/cc
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-08-15 18:16:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-08-15 18:16:09 +0200
commit38ac2756d2efac5ac245f27931ea7b18b619af8e (patch)
treef0bcbfecb873c7b2755e0be522b3b15d155c445f /build2/cc
parent13e8c0679cf0908765d491d541e03d40f574a502 (diff)
Redo Windows implementation of install_l() to use uninstall_f()
Diffstat (limited to 'build2/cc')
-rw-r--r--build2/cc/install-rule.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/build2/cc/install-rule.cxx b/build2/cc/install-rule.cxx
index a3a8253..9e52501 100644
--- a/build2/cc/install-rule.cxx
+++ b/build2/cc/install-rule.cxx
@@ -211,7 +211,7 @@ namespace build2
auto ln = [&rs, &id] (const path& f, const path& l)
{
- install_l (rs, id, f.leaf (), l.leaf (), false);
+ install_l (rs, id, f.leaf (), l.leaf (), 2 /* verbosity */);
return true;
};
@@ -245,7 +245,7 @@ namespace build2
auto rm = [&rs, &id] (const path& l)
{
- return uninstall_f (rs, id, nullptr, l.leaf (), false);
+ return uninstall_f (rs, id, nullptr, l.leaf (), 2 /* verbosity */);
};
const path& lk (lp.link);