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/file.cxx | |
parent | dd4a389117812f0d3b45473d87214d67d0cb4a3a (diff) |
Implement installation of prerequisite shared libraries
Diffstat (limited to 'build/file.cxx')
-rw-r--r-- | build/file.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/file.cxx b/build/file.cxx index 59fe1b9..73ce7cb 100644 --- a/build/file.cxx +++ b/build/file.cxx @@ -957,8 +957,8 @@ namespace build target& import (const prerequisite_key& pk) { - assert (*pk.proj != nullptr); - const string& p (**pk.proj); + assert (pk.proj != nullptr); + const string& p (*pk.proj); // @@ We no longer have location. This is especially bad for the // empty case, i.e., where do I need to specify the project |