aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/install/rule.hxx
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 /libbuild2/install/rule.hxx
parent13e8c0679cf0908765d491d541e03d40f574a502 (diff)
Redo Windows implementation of install_l() to use uninstall_f()
Diffstat (limited to 'libbuild2/install/rule.hxx')
-rw-r--r--libbuild2/install/rule.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/libbuild2/install/rule.hxx b/libbuild2/install/rule.hxx
index ff99c6e..c7e6a17 100644
--- a/libbuild2/install/rule.hxx
+++ b/libbuild2/install/rule.hxx
@@ -155,8 +155,8 @@ namespace build2
// Installation/uninstallation "commands".
//
- // If verbose is false, then only print the command at verbosity level 2
- // or higher. Note that these functions respect the dry_run flag.
+ // The verbosity argument specified the level to start printing the
+ // command at. Note that these functions respect the dry_run flag.
// Install a symlink: base/link -> target.
//
@@ -165,7 +165,7 @@ namespace build2
const install_dir& base,
const path& target,
const path& link,
- bool verbose);
+ uint16_t verbosity = 1);
// Uninstall a file or symlink:
//
@@ -180,7 +180,7 @@ namespace build2
const install_dir& base,
const file* target,
const path& name,
- bool verbose);
+ uint16_t verbosity = 1);
target_state
perform_install (action, const target&) const;