diff options
author | Jean-Christophe Fillion-Robin <jchris.fillionr@kitware.com> | 2015-01-25 01:15:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-01-26 14:44:44 (GMT) |
commit | 6cc0f6b512d08caabf088d22f3f25432e6307b6a (patch) | |
tree | 4ebc082ca58f70449915e910dc2f6e3da9a5334f /Source/cmake.cxx | |
parent | 97502ba77b6d589e2ff48a22b703f6908d5b5fdc (diff) | |
download | CMake-6cc0f6b512d08caabf088d22f3f25432e6307b6a.zip CMake-6cc0f6b512d08caabf088d22f3f25432e6307b6a.tar.gz CMake-6cc0f6b512d08caabf088d22f3f25432e6307b6a.tar.bz2 |
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.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 29d8206..652e451 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -437,7 +437,7 @@ bool cmake::SetCacheArgs(const std::vector<std::string>& 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) |