diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-10-03 12:16:37 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-10-03 12:16:37 (GMT) |
commit | adc880d2eb71c080e211bd52f0fdc102a8485f25 (patch) | |
tree | b901df63c4213e3076927b521d834cb91ee08687 /Source/cmFindCommon.cxx | |
parent | bc15811d2a62b8231f8b18efc823bf6a6b1e9b1e (diff) | |
download | CMake-adc880d2eb71c080e211bd52f0fdc102a8485f25.zip CMake-adc880d2eb71c080e211bd52f0fdc102a8485f25.tar.gz CMake-adc880d2eb71c080e211bd52f0fdc102a8485f25.tar.bz2 |
ENH: undo bad checkin
Diffstat (limited to 'Source/cmFindCommon.cxx')
-rw-r--r-- | Source/cmFindCommon.cxx | 9 |
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); |