ProjectExplorer: Don't try to fix remote build paths

Change-Id: Ia8a980fcb5154cfbfb412b3d7c4b565e9d200b15
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2022-10-05 16:26:45 +02:00
parent c4e6493ff1
commit 26d9e6900e

View File

@@ -113,6 +113,8 @@ void BuildDirectoryAspect::addToLayout(LayoutBuilder &builder)
FilePath BuildDirectoryAspect::fixupDir(const FilePath &dir)
{
if (dir.needsDevice())
return dir;
if (HostOsInfo::isWindowsHost() && !dir.startsWithDriveLetter())
return {};
const QString dirString = dir.toString().toLower();