Преглед на файлове

BUG: fix for bug 998, fix spelling errors

Bill Hoffman преди 21 години
родител
ревизия
c8101e8e47
променени са 4 файла, в които са добавени 5 реда и са изтрити 5 реда
  1. 1 1
      Modules/CMakeSystemSpecificInformation.cmake
  2. 1 1
      Source/cmMakefile.cxx
  3. 2 2
      Source/cmTarget.cxx
  4. 1 1
      Source/cmakewizard.h

+ 1 - 1
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)

+ 1 - 1
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

+ 2 - 2
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 = 

+ 1 - 1
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();