From c699c956d75dfaaded5bb24c5ea16edc73588649 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 27 Mar 2015 16:14:10 +0200 Subject: Rework dependency state dump support We now have a combined (scopes, variables, and targets) dump. --- build/diagnostics | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'build/diagnostics') diff --git a/build/diagnostics b/build/diagnostics index 270fa7a..68f449b 100644 --- a/build/diagnostics +++ b/build/diagnostics @@ -23,17 +23,17 @@ namespace build // class failed: public std::exception {}; - // In addition to calling relative_work(), this function also uses - // shorter notations such as '~/'. If the path is the same as work, - // it returns '.'. + // In addition to calling relative(), this function also uses shorter + // notations such as '~/'. If the path is the same as base, it returns + // '.'. // std::string - diag_relative_work (const path&); + diag_relative (const path&); inline std::ostream& operator<< (std::ostream& os, const path& p) { - return os << diag_relative_work (p); + return os << diag_relative (p); } // Print process commmand line. -- cgit v1.1