summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-01-08 19:57:59 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-01-08 19:57:59 (GMT)
commitc1c1fcb17cb2a4dbd408ac7f1b9a962966eb3939 (patch)
tree90b63bcabe435ae68c8f618d94c53b7b4a60294a
parentf1b0340d6c57af3ca2799c344b866d9cc5c5cbbc (diff)
parentc4e743674f3f7c576ff90cacae6465e7e171faed (diff)
downloadCMake-c1c1fcb17cb2a4dbd408ac7f1b9a962966eb3939.zip
CMake-c1c1fcb17cb2a4dbd408ac7f1b9a962966eb3939.tar.gz
CMake-c1c1fcb17cb2a4dbd408ac7f1b9a962966eb3939.tar.bz2
Merge topic 'fix-error-message-typo-tar-cmd'
c4e74367 cmcmd: fix copy/paste typo in '-E tar t' command
-rw-r--r--Source/cmcmd.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx
index a97444d..37d2916 100644
--- a/Source/cmcmd.cxx
+++ b/Source/cmcmd.cxx
@@ -753,7 +753,7 @@ int cmcmd::ExecuteCMakeCommand(std::vector<std::string>& args)
{
if ( !cmSystemTools::ListTar(outFile.c_str(), gzip, verbose) )
{
- cmSystemTools::Error("Problem creating tar: ", outFile.c_str());
+ cmSystemTools::Error("Problem listing tar: ", outFile.c_str());
return 1;
}
}