diff options
author | Brad King <brad.king@kitware.com> | 2015-01-27 16:21:57 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-01-27 16:21:57 (GMT) |
commit | 4ef0f7f62f3944eed29031ab9878f7213c7dd402 (patch) | |
tree | d9cab4b4ac065370f81480a5427d56b78fffe86e /Source | |
parent | 095fc28a7e077441daf2e3e59fe34f85f3ea6775 (diff) | |
parent | 6cc0f6b512d08caabf088d22f3f25432e6307b6a (diff) | |
download | CMake-4ef0f7f62f3944eed29031ab9878f7213c7dd402.zip CMake-4ef0f7f62f3944eed29031ab9878f7213c7dd402.tar.gz CMake-4ef0f7f62f3944eed29031ab9878f7213c7dd402.tar.bz2 |
Merge topic 'load-initial-cache-from-stderr-to-stdout'
6cc0f6b5 cmake: Display "loading initial cache" message on stdout
Diffstat (limited to 'Source')
-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) |