summaryrefslogtreecommitdiffstats
path: root/Source/cmNinjaNormalTargetGenerator.cxx
diff options
context:
space:
mode:
authorAndreas Mohr <andim2@users.sourceforge.net>2012-11-07 16:13:09 (GMT)
committerBrad King <brad.king@kitware.com>2013-05-07 12:39:19 (GMT)
commitbf019d765d3993ba265c990a6e3a2e53defe112c (patch)
tree828aad55a12f323a8f69e0c4cdfcfe79b02112ec /Source/cmNinjaNormalTargetGenerator.cxx
parentddac8d3d2d027dd50d729918078f57628855a568 (diff)
downloadCMake-bf019d765d3993ba265c990a6e3a2e53defe112c.zip
CMake-bf019d765d3993ba265c990a6e3a2e53defe112c.tar.gz
CMake-bf019d765d3993ba265c990a6e3a2e53defe112c.tar.bz2
Fix spelling and typos (non-binary)
Diffstat (limited to 'Source/cmNinjaNormalTargetGenerator.cxx')
-rw-r--r--Source/cmNinjaNormalTargetGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmNinjaNormalTargetGenerator.cxx b/Source/cmNinjaNormalTargetGenerator.cxx
index 7e48cd7..e5f3570 100644
--- a/Source/cmNinjaNormalTargetGenerator.cxx
+++ b/Source/cmNinjaNormalTargetGenerator.cxx
@@ -505,7 +505,7 @@ void cmNinjaNormalTargetGenerator::WriteLinkStatement()
const std::string objPath = GetTarget()->GetSupportDirectory();
vars["OBJECT_DIR"] = ConvertToNinjaPath(objPath.c_str());
EnsureDirectoryExists(objPath);
- // ar.exe can't handle backslashes in rsp files (implictly used by gcc)
+ // ar.exe can't handle backslashes in rsp files (implicitly used by gcc)
std::string& linkLibraries = vars["LINK_LIBRARIES"];
std::replace(linkLibraries.begin(), linkLibraries.end(), '\\', '/');
}