From c4e743674f3f7c576ff90cacae6465e7e171faed Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Mon, 5 Jan 2015 13:53:53 -0500 Subject: [PATCH] cmcmd: fix copy/paste typo in '-E tar t' command --- Source/cmcmd.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx index a97444d1a..37d2916df 100644 --- a/Source/cmcmd.cxx +++ b/Source/cmcmd.cxx @@ -753,7 +753,7 @@ int cmcmd::ExecuteCMakeCommand(std::vector& 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; } }