BUG: Fixed stupid error in the hack I just checked in.

This commit is contained in:
Brad King 2001-05-25 15:33:22 -04:00
parent 410f4838b8
commit 07c4f9f145
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ void cmSystemTools::GetPath(std::vector<std::string>& path)
// A hack to make the below algorithm work.
if(pathEnv[pathEnv.length()-1] != ':')
{
pathEnv += ":";
pathEnv += pathSep;
}
std::string::size_type start =0;
bool done = false;