mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 14:19:59 -05:00
COMP: hack fix for old sgi until bootstrap is fixed
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user