diff options
author | Asit Dhal <dhal.asitk@gmail.com> | 2020-06-09 05:28:58 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-06-10 11:23:10 (GMT) |
commit | a7d44d55aea622dccd80164ed9f616ee77d5aba7 (patch) | |
tree | 6c88afcf1485ac9281d7b0dc3dd5e5a0d9c8ff58 /Source/cmcmd.cxx | |
parent | c08ee5e74e4ee19989a99a405936a1cb61d33534 (diff) | |
download | CMake-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.cxx | 2 |
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; |