diff options
author | Brad King <brad.king@kitware.com> | 2014-07-10 19:50:15 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-10 20:01:04 (GMT) |
commit | f45ede61a1e5282f432b169217028c80c12c77a3 (patch) | |
tree | 562479827172b29624b0f36cf67183e27571c159 /Source | |
parent | 24637979962012ae170f7848ad69e896f8d3f67c (diff) | |
download | CMake-f45ede61a1e5282f432b169217028c80c12c77a3.zip CMake-f45ede61a1e5282f432b169217028c80c12c77a3.tar.gz CMake-f45ede61a1e5282f432b169217028c80c12c77a3.tar.bz2 |
cmTarget: Fix CMP0022 OLD breakage from recent refactoring
In commit 7b0834e9 (cmTarget: Refactor internal LinkImplementation map,
2014-06-19) cmTarget::GetLinkImplementationLibrariesInternal was changed
accidentally to pass "this" to ComputeLinkImplementation instead of
"head". Change it back.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index aa0ed56..a6303e9 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -6568,7 +6568,7 @@ cmTarget::GetLinkImplementationLibrariesInternal(const std::string& config, if(!impl.LibrariesDone) { impl.LibrariesDone = true; - this->ComputeLinkImplementation(config, impl, this); + this->ComputeLinkImplementation(config, impl, head); } return &impl; } |