diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-01-04 14:55:39 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-01-04 14:55:39 (GMT) |
commit | 0b40b42b0888857d770007bf7b7438f9291a67e5 (patch) | |
tree | 93dacaf4b38916e85ee63c01d7ee348d28bc927d /Source/cmFindPathCommand.cxx | |
parent | 6e675ce602be55fe084174b37098df08880c2e27 (diff) | |
download | CMake-0b40b42b0888857d770007bf7b7438f9291a67e5.zip CMake-0b40b42b0888857d770007bf7b7438f9291a67e5.tar.gz CMake-0b40b42b0888857d770007bf7b7438f9291a67e5.tar.bz2 |
ENH: remove debug print stuff
Diffstat (limited to 'Source/cmFindPathCommand.cxx')
-rw-r--r-- | Source/cmFindPathCommand.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmFindPathCommand.cxx b/Source/cmFindPathCommand.cxx index 305f4be..35e6d0c 100644 --- a/Source/cmFindPathCommand.cxx +++ b/Source/cmFindPathCommand.cxx @@ -132,7 +132,6 @@ cmStdString cmFindPathCommand::FindHeaderInFrameworks( cmStdString fileName = file; cmStdString frameWorkName; cmStdString::size_type pos = fileName.find("/"); - std::cerr << "ff " << fileName << " " << pos << "\n"; if(pos != fileName.npos) { // remove the name from the slash; @@ -140,7 +139,6 @@ cmStdString cmFindPathCommand::FindHeaderInFrameworks( frameWorkName = file; frameWorkName = frameWorkName.substr(0, frameWorkName.size()-fileName.size()-1); // if the framework has a path in it then just use the filename - std::cerr << fileName << " " << frameWorkName << "\n"; if(frameWorkName.find("/") != frameWorkName.npos) { fileName = file; @@ -163,7 +161,6 @@ cmStdString cmFindPathCommand::FindHeaderInFrameworks( std::string intPath = fpath; intPath += "/Headers/"; intPath += fileName; - std::cerr << "try " << intPath << "\n"; if(cmSystemTools::FileExists(intPath.c_str())) { return fpath; |