From 6cc0f6b512d08caabf088d22f3f25432e6307b6a Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Sat, 24 Jan 2015 20:15:28 -0500 Subject: [PATCH] cmake: Display "loading initial cache" message on stdout This message has been on stderr since the "-C" option was first added, but it is informational and not an error. Other informational messages go to stdout, so send this one there too. --- Source/cmake.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 29d82061a3..652e451058 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -437,7 +437,7 @@ bool cmake::SetCacheArgs(const std::vector& args) return false; } } - std::cerr << "loading initial cache file " << path << "\n"; + std::cout << "loading initial cache file " << path << "\n"; this->ReadListFile(args, path.c_str()); } else if(arg.find("-P",0) == 0)