STYLE: fix some typos, nicer debug output

Alex
This commit is contained in:
Alexander Neundorf 2007-07-19 11:13:01 -04:00
parent 3d862c44f1
commit 8c77fe55dc
4 changed files with 7 additions and 7 deletions

View File

@ -253,7 +253,7 @@ int main (int argc, char *argv[])
if ( !globalMF->ReadListFile(0, cpackConfigFile.c_str()) ) if ( !globalMF->ReadListFile(0, cpackConfigFile.c_str()) )
{ {
cmCPack_Log(&log, cmCPackLog::LOG_ERROR, cmCPack_Log(&log, cmCPackLog::LOG_ERROR,
"Problem reding CPack config file: \"" "Problem reading CPack config file: \""
<< cpackConfigFile.c_str() << "\"" << std::endl); << cpackConfigFile.c_str() << "\"" << std::endl);
return 1; return 1;
} }

View File

@ -66,7 +66,7 @@ public:
{ {
return return
" FIND_PACKAGE(<name> [major.minor] [QUIET] [NO_MODULE]\n" " FIND_PACKAGE(<name> [major.minor] [QUIET] [NO_MODULE]\n"
" [[REQUIRED|COMPONENTS] [componets...]])\n" " [[REQUIRED|COMPONENTS] [components...]])\n"
"Finds and loads settings from an external project. <name>_FOUND will " "Finds and loads settings from an external project. <name>_FOUND will "
"be set to indicate whether the package was found. Settings that " "be set to indicate whether the package was found. Settings that "
"can be used when <name>_FOUND is true are package-specific. The " "can be used when <name>_FOUND is true are package-specific. The "

View File

@ -226,7 +226,7 @@ static void cmakemainProgressCallback(const char *m, float prog,
{ {
cmMakefile* mf = cmakemainGetMakefile(clientdata); cmMakefile* mf = cmakemainGetMakefile(clientdata);
std::string dir; std::string dir;
if ((mf) && (strstr(m, "Configuring")==m)) if ((mf) && (strstr(m, "Configuring")==m) && (prog<0))
{ {
dir = " "; dir = " ";
dir += mf->GetCurrentDirectory(); dir += mf->GetCurrentDirectory();