summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2016-09-06 20:59:59 (GMT)
committerStephen Kelly <steveire@gmail.com>2016-09-19 19:36:12 (GMT)
commit0a98c74c1ba025957b2a3933d9897750109390bf (patch)
tree23f40f450527079972176514bc67515133a3de71 /Source/cmTarget.cxx
parent495e26ae57fc8f6a38f77ea0d0984fa2a3abe6c1 (diff)
downloadCMake-0a98c74c1ba025957b2a3933d9897750109390bf.zip
CMake-0a98c74c1ba025957b2a3933d9897750109390bf.tar.gz
CMake-0a98c74c1ba025957b2a3933d9897750109390bf.tar.bz2
Convert: Remove last uses of HOME enum value
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r--Source/cmTarget.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 1b6c93e..1dad742 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -596,8 +596,8 @@ void cmTarget::GetTllSignatureTraces(std::ostream& s, TLLSignature sig) const
it != this->TLLCommands.end(); ++it) {
if (it->first == sig) {
cmListFileContext lfc = it->second;
- lfc.FilePath =
- converter.ConvertToRelativePath(lfc.FilePath, cmOutputConverter::HOME);
+ lfc.FilePath = converter.ConvertToRelativePath(
+ this->Makefile->GetState()->GetSourceDirectory(), lfc.FilePath);
s << " * " << lfc << std::endl;
}
}