diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-27 16:14:10 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-27 16:14:10 +0200 |
commit | c699c956d75dfaaded5bb24c5ea16edc73588649 (patch) | |
tree | 168245560a535714c841ded6640b69b22bf7b08d /build/prerequisite.cxx | |
parent | 9c02d307d69faa6e3c7056d8e07f16c75c189f92 (diff) |
Rework dependency state dump support
We now have a combined (scopes, variables, and targets) dump.
Diffstat (limited to 'build/prerequisite.cxx')
-rw-r--r-- | build/prerequisite.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/prerequisite.cxx b/build/prerequisite.cxx index feb6381..aa6c53c 100644 --- a/build/prerequisite.cxx +++ b/build/prerequisite.cxx @@ -28,7 +28,7 @@ namespace build // if (!p.dir.absolute ()) { - string s (diag_relative_work (p.scope.path ())); + string s (diag_relative (p.scope.path ())); if (s != ".") { @@ -45,7 +45,7 @@ namespace build // if (!p.dir.empty ()) { - string s (diag_relative_work (p.dir)); + string s (diag_relative (p.dir)); if (s != ".") { |