aboutsummaryrefslogtreecommitdiff
path: root/bdep/utility.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bdep/utility.hxx')
-rw-r--r--bdep/utility.hxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/bdep/utility.hxx b/bdep/utility.hxx
index 133896f..7f02b3c 100644
--- a/bdep/utility.hxx
+++ b/bdep/utility.hxx
@@ -119,6 +119,19 @@ namespace bdep
dir_path
current_directory ();
+ // Normalize a directory path. Also make the relative path absolute using
+ // the current directory.
+ //
+ dir_path&
+ normalize (dir_path&, const char* what);
+
+ inline dir_path
+ normalize (const dir_path& d, const char* what)
+ {
+ dir_path r (d);
+ return move (normalize (r, what));
+ }
+
// Progress.
//
extern bool stderr_term; // True if stderr is a terminal.