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.
This commit is contained in:
Jean-Christophe Fillion-Robin 2015-01-24 20:15:28 -05:00 committed by Brad King
parent 97502ba77b
commit 6cc0f6b512
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)