summaryrefslogtreecommitdiffstats
path: root/Source/cmcmd.cxx
diff options
context:
space:
mode:
authorAsit Dhal <dhal.asitk@gmail.com>2020-06-09 05:28:58 (GMT)
committerBrad King <brad.king@kitware.com>2020-06-10 11:23:10 (GMT)
commita7d44d55aea622dccd80164ed9f616ee77d5aba7 (patch)
tree6c88afcf1485ac9281d7b0dc3dd5e5a0d9c8ff58 /Source/cmcmd.cxx
parentc08ee5e74e4ee19989a99a405936a1cb61d33534 (diff)
downloadCMake-a7d44d55aea622dccd80164ed9f616ee77d5aba7.zip
CMake-a7d44d55aea622dccd80164ed9f616ee77d5aba7.tar.gz
CMake-a7d44d55aea622dccd80164ed9f616ee77d5aba7.tar.bz2
cmake: remove -E compare_files error message if files differ
It is not an error for the files to be different. Fixes: #20803
Diffstat (limited to 'Source/cmcmd.cxx')
-rw-r--r--Source/cmcmd.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx
index de76d73..cbc8e8f 100644
--- a/Source/cmcmd.cxx
+++ b/Source/cmcmd.cxx
@@ -586,8 +586,6 @@ int cmcmd::ExecuteCMakeCommand(std::vector<std::string> const& args)
}
if (filesDiffer) {
- std::cerr << "Files \"" << args[args.size() - 2] << "\" to \""
- << args[args.size() - 1] << "\" are different.\n";
return 1;
}
return 0;