ENH: fix for bug 28618, cmake.exe can not find itself

This commit is contained in:
Bill Hoffman 2006-02-10 12:43:00 -05:00
parent 1b6e55933b
commit d2621064e2
1 changed files with 4 additions and 1 deletions

View File

@ -1950,9 +1950,12 @@ kwsys_stl::string SystemTools::FindProgram(
{
path.push_back(*i);
}
for(kwsys_stl::vector<kwsys_stl::string>::const_iterator p = path.begin();
for(kwsys_stl::vector<kwsys_stl::string>::iterator p = path.begin();
p != path.end(); ++p)
{
#ifdef _WIN32
SystemTools::ReplaceString(*p, "\"", "");
#endif
tryPath = *p;
tryPath += "/";
tryPath += name;