diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-12 13:46:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-12 13:46:07 +0200 |
commit | ad4120afce8c7bc4001fc0173a0ff7611ec0198d (patch) | |
tree | ebbc31d03feda96560df437247b63206489a1139 /build/prerequisite.cxx | |
parent | dd4a389117812f0d3b45473d87214d67d0cb4a3a (diff) |
Implement installation of prerequisite shared libraries
Diffstat (limited to 'build/prerequisite.cxx')
-rw-r--r-- | build/prerequisite.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/prerequisite.cxx b/build/prerequisite.cxx index 89ac275..49cab89 100644 --- a/build/prerequisite.cxx +++ b/build/prerequisite.cxx @@ -20,9 +20,9 @@ namespace build ostream& operator<< (ostream& os, const prerequisite_key& pk) { - if (*pk.proj != nullptr) - os << **pk.proj << '%'; - // + if (pk.proj != nullptr) + os << *pk.proj << '%'; + // Don't print scope if we are project-qualified or the // prerequisite's directory is absolute. In both these // cases the scope is not used to resolve it to target. |