aboutsummaryrefslogtreecommitdiff
path: root/libbutl/builtin.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-03-15 17:03:49 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-03-17 13:27:37 +0300
commit34466f10506fd57836e89cffda7738c3008321b1 (patch)
tree1c4408885403a303e85a39d883399eca1aff05a5 /libbutl/builtin.cxx
parent955afeb419ed02a078b45312949767692751274c (diff)
Fix mkanylink() to complete relative target against link directory when create hardlink or copy
Diffstat (limited to 'libbutl/builtin.cxx')
-rw-r--r--libbutl/builtin.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbutl/builtin.cxx b/libbutl/builtin.cxx
index f1b6b63..9efa697 100644
--- a/libbutl/builtin.cxx
+++ b/libbutl/builtin.cxx
@@ -277,7 +277,7 @@ namespace butl
}
// Return the current working directory if wd is empty and wd otherwise,
- // completed against the current directory if it is relative. Fail if
+ // completed using the current directory if it is relative. Fail if
// std::system_error is thrown by the underlying function call.
//
dir_path
@@ -779,7 +779,7 @@ namespace butl
assert (link.absolute () && link.normalized ());
// Determine the target type, fail if the target doesn't exist. Note that
- // to do that we need to complete a relative target path against the link
+ // to do that we need to complete a relative target path using the link
// directory making the target path absolute.
//
const path& atp (target.relative ()