COMP: hack fix for old sgi until bootstrap is fixed

This commit is contained in:
Bill Hoffman 2005-04-05 21:10:10 -04:00
parent 3ca1081419
commit 19aff4f3bd
1 changed files with 1 additions and 1 deletions

View File

@ -2170,7 +2170,7 @@ SystemToolsAppendComponents(
out_components.erase(out_components.end()-1, out_components.end());
}
}
else if(*i != "." && *i != "")
else if(!(*i == ".") && !(*i != ""))
{
out_components.push_back(*i);
}