diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 408eec067d..416ac66ab3 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -975,20 +975,12 @@ bool cmFileCommand::HandleSystemPathCommand(std::vector const& args) { std::vector::const_iterator i = args.begin(); - for(std::vector::const_iterator j = args.begin(); - j != args.end(); ++j) - { - std::cerr << "[" << *j << "]\n"; - } - return true; if(args.size() != 3) { this->SetError("FILE(SYSTEM_PATH ENV result) must be called with " "only three arguments."); return false; } - - i++; // Get rid of subcommand std::vector path; cmSystemTools::GetPath(path, i->c_str());