From 38ac2756d2efac5ac245f27931ea7b18b619af8e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 15 Aug 2019 18:16:09 +0200 Subject: Redo Windows implementation of install_l() to use uninstall_f() --- build2/cc/install-rule.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build2/cc') 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); -- cgit v1.1