diff options
author | Brad King <brad.king@kitware.com> | 2015-01-08 19:57:59 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-01-08 19:57:59 (GMT) |
commit | c1c1fcb17cb2a4dbd408ac7f1b9a962966eb3939 (patch) | |
tree | 90b63bcabe435ae68c8f618d94c53b7b4a60294a | |
parent | f1b0340d6c57af3ca2799c344b866d9cc5c5cbbc (diff) | |
parent | c4e743674f3f7c576ff90cacae6465e7e171faed (diff) | |
download | CMake-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.cxx | 2 |
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; } } |