diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-09-12 15:04:00 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-09-12 15:04:00 (GMT) |
commit | 693199999ae8217314db08748b3e588bd93b21b8 (patch) | |
tree | 1bff6ecb62e9d162a452cbd630d5aab61fd59ea5 /Source | |
parent | d1a5f1241d0ae347fff5bc9c776bf9dfb9209e51 (diff) | |
download | CMake-693199999ae8217314db08748b3e588bd93b21b8.zip CMake-693199999ae8217314db08748b3e588bd93b21b8.tar.gz CMake-693199999ae8217314db08748b3e588bd93b21b8.tar.bz2 |
VS6: Add some delimiting between error message and content.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index e5b4057..f00a937 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -147,7 +147,7 @@ void cmLocalVisualStudio6Generator::OutputDSPFile() this->SetBuildType(UTILITY, l->first.c_str(), l->second); break; default: - cmSystemTools::Error("Bad target type", l->first.c_str()); + cmSystemTools::Error("Bad target type: ", l->first.c_str()); break; } // INCLUDE_EXTERNAL_MSPROJECT command only affects the workspace @@ -165,7 +165,7 @@ void cmLocalVisualStudio6Generator::OutputDSPFile() dir += l->first.substr(0, pos); if(!cmSystemTools::MakeDirectory(dir.c_str())) { - cmSystemTools::Error("Error creating directory ", dir.c_str()); + cmSystemTools::Error("Error creating directory: ", dir.c_str()); } } this->CreateSingleDSP(l->first.c_str(),l->second); |