Merge topic 'load-initial-cache-from-stderr-to-stdout'

6cc0f6b5 cmake: Display "loading initial cache" message on stdout
This commit is contained in:
Brad King 2015-01-27 11:21:57 -05:00 committed by CMake Topic Stage
commit 4ef0f7f62f
1 changed files with 1 additions and 1 deletions

View File

@ -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)