From adc880d2eb71c080e211bd52f0fdc102a8485f25 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Fri, 3 Oct 2008 08:16:37 -0400 Subject: [PATCH] ENH: undo bad checkin --- Source/cmFindCommon.cxx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Source/cmFindCommon.cxx b/Source/cmFindCommon.cxx index 2f7a515c1..daa8bd4a2 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 tmp; cmSystemTools::GetPath(tmp, variable); - for(std::vector::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);