summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-07-26 20:59:55 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-07-26 20:59:55 (GMT)
commitc8101e8e4706445b172a1a5ed0f2fd6960522a18 (patch)
treea4131f4a20fad9bcb44e17f0658588f14a22d48e
parent983919f5f3b71ef5053f8a0bf6010c3b3fce8d61 (diff)
downloadCMake-c8101e8e4706445b172a1a5ed0f2fd6960522a18.zip
CMake-c8101e8e4706445b172a1a5ed0f2fd6960522a18.tar.gz
CMake-c8101e8e4706445b172a1a5ed0f2fd6960522a18.tar.bz2
BUG: fix for bug 998, fix spelling errors
-rw-r--r--Modules/CMakeSystemSpecificInformation.cmake2
-rw-r--r--Source/cmMakefile.cxx2
-rw-r--r--Source/cmTarget.cxx4
-rw-r--r--Source/cmakewizard.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/Modules/CMakeSystemSpecificInformation.cmake b/Modules/CMakeSystemSpecificInformation.cmake
index 94e4979..c9f5c29 100644
--- a/Modules/CMakeSystemSpecificInformation.cmake
+++ b/Modules/CMakeSystemSpecificInformation.cmake
@@ -66,7 +66,7 @@ IF(CMAKE_C_COMPILER)
ENDIF(CMAKE_C_COMPILER)
IF(CMAKE_CXX_COMPILER)
GET_FILENAME_COMPONENT(CMAKE_BASE_NAME ${CMAKE_CXX_COMPILER} NAME_WE)
- # since the gnu compiler has several names force gcc
+ # since the gnu compiler has several names force g++
IF(CMAKE_COMPILER_IS_GNUCXX)
SET(CMAKE_BASE_NAME g++)
ENDIF(CMAKE_COMPILER_IS_GNUCXX)
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 265c0b0..f6b7225 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -422,7 +422,7 @@ bool cmMakefile::ReadListFile(const char* filename_in, const char* external_in)
this->ExecuteCommand(lf->m_Functions[i]);
}
- // send scope ended to and funciton blockers
+ // send scope ended to and function blockers
if (filename)
{
// loop over all function blockers to see if any block this command
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 7b7db49..f914094 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -67,7 +67,7 @@ void cmTarget::TraceVSDependencies(std::string projFile,
for(std::vector<std::string>::iterator id = depends.begin();
id != depends.end(); ++id)
{
- // if there is a cutom rule to generate that dependency
+ // if there is a custom rule to generate that dependency
// then add it to the list
cmSourceFile* outsf =
makefile->GetSourceFileWithOutput(id->c_str());
@@ -107,7 +107,7 @@ void cmTarget::TraceVSDependencies(std::string projFile,
// add in the project file itself
srcFilesToProcess.push(projFile);
srcFilesQueued.insert(projFile);
- // add in the library depends for cusotm targets
+ // add in the library depends for custom targets
if (this->GetType() == cmTarget::UTILITY)
{
for (std::vector<cmCustomCommand>::iterator ic =
diff --git a/Source/cmakewizard.h b/Source/cmakewizard.h
index 1a9baa6..f3093dc 100644
--- a/Source/cmakewizard.h
+++ b/Source/cmakewizard.h
@@ -23,7 +23,7 @@ class cmakewizard
public:
cmakewizard();
/**
- * Prompt the user to see if they want to see advanced entires.
+ * Prompt the user to see if they want to see advanced entries.
*/
virtual bool AskAdvanced();