diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-07-19 15:13:01 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-07-19 15:13:01 (GMT) |
commit | 8c77fe55dcdbb7c75b963f39444d9e939e6b66f3 (patch) | |
tree | 4745ad4478cbe09000c23f138cc466f737b02e14 /Source/cmMakefile.cxx | |
parent | 3d862c44f1be74c28858f7b3932b9f17fc551d20 (diff) | |
download | CMake-8c77fe55dcdbb7c75b963f39444d9e939e6b66f3.zip CMake-8c77fe55dcdbb7c75b963f39444d9e939e6b66f3.tar.gz CMake-8c77fe55dcdbb7c75b963f39444d9e939e6b66f3.tar.bz2 |
STYLE: fix some typos, nicer debug output
Alex
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 2757ad3..0d8ebff 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -306,7 +306,7 @@ bool cmMakefile::ExecuteCommand(const cmListFileFunction& lff) error << "Error in cmake code at\n" << lff.FilePath << ":" << lff.Line << ":\n" << rm->GetError() << std::endl - << "Called from: " << this->GetListFileStack().c_str(); + << " Called from: " << this->GetListFileStack().c_str(); cmSystemTools::Error(error.str().c_str()); return false; } @@ -323,7 +323,7 @@ bool cmMakefile::ExecuteCommand(const cmListFileFunction& lff) error << "Error in cmake code at\n" << lff.FilePath << ":" << lff.Line << ":\n" << usedCommand->GetError() << std::endl - << "Called from: " << this->GetListFileStack().c_str(); + << " Called from: " << this->GetListFileStack().c_str(); cmSystemTools::Error(error.str().c_str()); result = false; if ( this->GetCMakeInstance()->GetScriptMode() ) @@ -2781,7 +2781,7 @@ std::string cmMakefile::GetListFileStack() { if (depth != this->ListFileStack.size()) { - tmp << "\n "; + tmp << "\n "; } --it; tmp << "["; |