summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmFindCommon.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmFindCommon.cxx b/Source/cmFindCommon.cxx
index 2f7a515..daa8bd4 100644
--- a/Source/cmFindCommon.cxx
+++ b/Source/cmFindCommon.cxx
@@ -372,18 +372,9 @@ void cmFindCommon::AddCMakePath(const char* variable)
//----------------------------------------------------------------------------
void cmFindCommon::AddEnvPath(const char* variable)
{
- if(variable)
- {
- std::cerr << variable << "\n";
- }
// Get a path from the environment.
std::vector<std::string> tmp;
cmSystemTools::GetPath(tmp, variable);
- for(std::vector<std::string>::iterator i = tmp.begin();
- i != tmp.end(); ++i)
- {
- std::cerr << i->c_str() << "\n";
- }
// Relative paths are interpreted with respect to the current
// working directory.
this->AddPathsInternal(tmp, EnvPath);