summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2008-10-03 12:16:37 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2008-10-03 12:16:37 (GMT)
commitadc880d2eb71c080e211bd52f0fdc102a8485f25 (patch)
treeb901df63c4213e3076927b521d834cb91ee08687
parentbc15811d2a62b8231f8b18efc823bf6a6b1e9b1e (diff)
downloadCMake-adc880d2eb71c080e211bd52f0fdc102a8485f25.zip
CMake-adc880d2eb71c080e211bd52f0fdc102a8485f25.tar.gz
CMake-adc880d2eb71c080e211bd52f0fdc102a8485f25.tar.bz2
ENH: undo bad checkin
-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);