summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalNinjaGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2016-08-27 11:44:57 (GMT)
committerStephen Kelly <steveire@gmail.com>2016-08-27 13:41:17 (GMT)
commit58ba87f892316b9f9cbb7851a940ec808527e36a (patch)
treeaea9e1d7898e6d8baffc74b1ea6abd5937fb955a /Source/cmLocalNinjaGenerator.cxx
parente80314d7a8208214ac85bf9b2e769a7e3b5aaa04 (diff)
downloadCMake-58ba87f892316b9f9cbb7851a940ec808527e36a.zip
CMake-58ba87f892316b9f9cbb7851a940ec808527e36a.tar.gz
CMake-58ba87f892316b9f9cbb7851a940ec808527e36a.tar.bz2
Convert: Replace Convert(FULL) with equivalent
This is more explicit than funnelling everything through the Convert method.
Diffstat (limited to 'Source/cmLocalNinjaGenerator.cxx')
-rw-r--r--Source/cmLocalNinjaGenerator.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmLocalNinjaGenerator.cxx b/Source/cmLocalNinjaGenerator.cxx
index bbec634..d07bfaa 100644
--- a/Source/cmLocalNinjaGenerator.cxx
+++ b/Source/cmLocalNinjaGenerator.cxx
@@ -133,7 +133,8 @@ std::string cmLocalNinjaGenerator::ConvertToIncludeReference(
bool forceFullPaths)
{
if (forceFullPaths) {
- return this->Convert(path, cmOutputConverter::FULL, format);
+ return this->ConvertToOutputFormat(cmSystemTools::CollapseFullPath(path),
+ format);
}
return this->Convert(path, cmOutputConverter::HOME_OUTPUT, format);
}