diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-06-27 13:17:12 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-06-27 13:17:12 (GMT) |
commit | c19c252e23ece64d0533e450668d26c976251ce2 (patch) | |
tree | f812a7cec06732ad4579d657438e6f854bf5d41b /Source/cmSystemTools.cxx | |
parent | c6418bd34b5c66f636bb2aadb3b5af7a22e81227 (diff) | |
download | CMake-c19c252e23ece64d0533e450668d26c976251ce2.zip CMake-c19c252e23ece64d0533e450668d26c976251ce2.tar.gz CMake-c19c252e23ece64d0533e450668d26c976251ce2.tar.bz2 |
minor fixes to testing
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 556bacc..a3221c0 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -780,7 +780,8 @@ bool cmSystemTools::RunCommand(const char* command, std::ifstream fin(tempFile.c_str()); if(!fin) { - cmSystemTools::Error(command, " from RunCommand Faild to create output file", + cmSystemTools::Error(command, + " from RunCommand Failed to create output file: ", tempFile.c_str()); return false; } |