mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-26 00:20:06 -06:00
BUG: IsSubDirectory should use ComparePath to do platform-independent path comparison.
This commit is contained in:
@@ -3466,7 +3466,7 @@ bool SystemTools::IsSubDirectory(const char* cSubdir, const char* cDir)
|
||||
do
|
||||
{
|
||||
path = SystemTools::GetParentDirectory(path.c_str());
|
||||
if ( dir == path )
|
||||
if(SystemTools::ComparePath(dir.c_str(), path.c_str()))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user