diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 15:37:49 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:46:32 (GMT) |
commit | abe9505df94e9a1511238c41f9d4459064148c94 (patch) | |
tree | 114059d55fbfec3a1929515bcdc591e2c55f5e30 /Source/cmComputeLinkInformation.cxx | |
parent | d4a24c0e953e0032a2e483917850b7f8f387bbb2 (diff) | |
download | CMake-abe9505df94e9a1511238c41f9d4459064148c94.zip CMake-abe9505df94e9a1511238c41f9d4459064148c94.tar.gz CMake-abe9505df94e9a1511238c41f9d4459064148c94.tar.bz2 |
cmGeneratorTarget: Move HaveBuildTreeRPath from cmTarget.
Diffstat (limited to 'Source/cmComputeLinkInformation.cxx')
-rw-r--r-- | Source/cmComputeLinkInformation.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx index 6ba0eed..192ad5f 100644 --- a/Source/cmComputeLinkInformation.cxx +++ b/Source/cmComputeLinkInformation.cxx @@ -1925,7 +1925,7 @@ void cmComputeLinkInformation::GetRPath(std::vector<std::string>& runtimeDirs, (outputRuntime && this->Target->Target->HaveInstallTreeRPATH() && linking_for_install); bool use_build_rpath = - (outputRuntime && this->Target->Target->HaveBuildTreeRPATH(this->Config) && + (outputRuntime && this->Target->HaveBuildTreeRPATH(this->Config) && !linking_for_install); bool use_link_rpath = outputRuntime && linking_for_install && |