summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-16 21:31:37 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2016-09-16 21:31:37 (GMT)
commit3fab1fef23476b27274cddf4bb8f6cbe8d36c712 (patch)
tree5854e9bdc71101579a61e4ef6c163ea2587a755b /Source
parent7b94a7adb32d1a8966628d2b194cfc5de04d7ecc (diff)
downloadCMake-3fab1fef23476b27274cddf4bb8f6cbe8d36c712.zip
CMake-3fab1fef23476b27274cddf4bb8f6cbe8d36c712.tar.gz
CMake-3fab1fef23476b27274cddf4bb8f6cbe8d36c712.tar.bz2
cmNinjaNormalTargetGenerator: make sure comments match parameter names
Diffstat (limited to 'Source')
-rw-r--r--Source/cmNinjaNormalTargetGenerator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx
index 335b552..b2384b0 100644
--- a/Source/cmNinjaNormalTargetGenerator.cxx
+++ b/Source/cmNinjaNormalTargetGenerator.cxx
@@ -336,7 +336,7 @@ std::vector<std::string> cmNinjaNormalTargetGenerator::ComputeLinkCmd()
std::string targetOutputReal =
this->ConvertToNinjaPath(gt.GetFullPath(cfgName,
/*implib=*/false,
- /*realpath=*/true));
+ /*realname=*/true));
cmakeCommand += targetOutputReal;
cmakeCommand += " || true";
linkCmds.push_back(cmakeCommand);
@@ -414,7 +414,7 @@ void cmNinjaNormalTargetGenerator::WriteLinkStatement()
std::string targetOutputReal =
ConvertToNinjaPath(gt.GetFullPath(cfgName,
/*implib=*/false,
- /*realpath=*/true));
+ /*realname=*/true));
std::string targetOutputImplib =
ConvertToNinjaPath(gt.GetFullPath(cfgName,
/*implib=*/true));