summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileTargetGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-05-15 22:55:21 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-06 07:15:58 (GMT)
commit59e21ffa134faf0b089d9a704b3763e7f6f237d5 (patch)
tree29594cc437406a631386c2ccf4b1cf316106537f /Source/cmMakefileTargetGenerator.cxx
parent242dcc2c22535c00348de18bba41605428ccdb73 (diff)
downloadCMake-59e21ffa134faf0b089d9a704b3763e7f6f237d5.zip
CMake-59e21ffa134faf0b089d9a704b3763e7f6f237d5.tar.gz
CMake-59e21ffa134faf0b089d9a704b3763e7f6f237d5.tar.bz2
Port static calls from cmLocalGenerator to cmOutputConverter.
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r--Source/cmMakefileTargetGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx
index 9ac9ddb..c26bc60 100644
--- a/Source/cmMakefileTargetGenerator.cxx
+++ b/Source/cmMakefileTargetGenerator.cxx
@@ -1126,8 +1126,8 @@ void cmMakefileTargetGenerator::WriteTargetDependRules()
pi != this->MultipleOutputPairs.end(); ++pi)
{
*this->InfoFileStream
- << " " << cmLocalGenerator::EscapeForCMake(pi->first)
- << " " << cmLocalGenerator::EscapeForCMake(pi->second)
+ << " " << cmOutputConverter::EscapeForCMake(pi->first)
+ << " " << cmOutputConverter::EscapeForCMake(pi->second)
<< "\n";
}
*this->InfoFileStream << " )\n\n";