diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-08-27 16:52:40 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-09-19 19:36:14 (GMT) |
commit | ad79061720b8f68cd8e406aadd240d233d2a1073 (patch) | |
tree | 8b8b52bb384d218c6c8e6410b78d1377ffa5d21f /Source/cmLocalGenerator.cxx | |
parent | 4cf707b08316be6afb15435ce57c67b467fc47b3 (diff) | |
download | CMake-ad79061720b8f68cd8e406aadd240d233d2a1073.zip CMake-ad79061720b8f68cd8e406aadd240d233d2a1073.tar.gz CMake-ad79061720b8f68cd8e406aadd240d233d2a1073.tar.bz2 |
Convert: Inline uses of START_OUTPUT
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 6d3ce1c..9b12354 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1409,7 +1409,9 @@ std::string cmLocalGenerator::ConvertToLinkReference(std::string const& lib, #endif // Normal behavior. - return this->Convert(lib, START_OUTPUT, format); + return this->ConvertToOutputFormat( + this->ConvertToRelativePath(this->GetCurrentBinaryDirectory(), lib), + format); } /** |