summaryrefslogtreecommitdiffstats
path: root/Source/cmTargetLinkLibrariesCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-06-25 14:11:50 (GMT)
committerBrad King <brad.king@kitware.com>2015-06-25 14:11:50 (GMT)
commite4a9346dba41252f0f806b33cb026095e03fb00c (patch)
tree337dc07ee2041e3a036817d9f847723e92bdaed3 /Source/cmTargetLinkLibrariesCommand.cxx
parent9e5e645ae6081f8c29ef00144f85d69a64d361a0 (diff)
parent30c2e1dd16e061fbabffa35816cb893d81ff0dcf (diff)
downloadCMake-e4a9346dba41252f0f806b33cb026095e03fb00c.zip
CMake-e4a9346dba41252f0f806b33cb026095e03fb00c.tar.gz
CMake-e4a9346dba41252f0f806b33cb026095e03fb00c.tar.bz2
Merge branch 'fix-target_link_libraries-wrong-dir' into release
Diffstat (limited to 'Source/cmTargetLinkLibrariesCommand.cxx')
-rw-r--r--Source/cmTargetLinkLibrariesCommand.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmTargetLinkLibrariesCommand.cxx b/Source/cmTargetLinkLibrariesCommand.cxx
index df37d66..b57b921 100644
--- a/Source/cmTargetLinkLibrariesCommand.cxx
+++ b/Source/cmTargetLinkLibrariesCommand.cxx
@@ -368,7 +368,8 @@ cmTargetLinkLibrariesCommand::HandleLibrary(const std::string& lib,
|| this->CurrentProcessingState == ProcessingKeywordPublicInterface
|| this->CurrentProcessingState == ProcessingKeywordLinkInterface)
? cmTarget::KeywordTLLSignature : cmTarget::PlainTLLSignature;
- if (!this->Target->PushTLLCommandTrace(sig))
+ if (!this->Target->PushTLLCommandTrace(
+ sig, this->Makefile->GetExecutionContext()))
{
std::ostringstream e;
const char *modal = 0;