summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorJean-Christophe Fillion-Robin <jchris.fillionr@kitware.com>2015-01-25 01:15:28 (GMT)
committerBrad King <brad.king@kitware.com>2015-01-26 14:44:44 (GMT)
commit6cc0f6b512d08caabf088d22f3f25432e6307b6a (patch)
tree4ebc082ca58f70449915e910dc2f6e3da9a5334f /Source/cmake.cxx
parent97502ba77b6d589e2ff48a22b703f6908d5b5fdc (diff)
downloadCMake-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.cxx2
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)