forked from qt-creator/qt-creator
QMake: Remove one occurrence of QDir::cleanPath
Depends on host system. Task-number: QTCREATORBUG-28355 Change-Id: I2f44bbbb96a080154838d9677e3c8aee2dba5e18 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -2055,7 +2055,7 @@ FilePaths QmakeProFile::generatedFiles(const FilePath &buildDir,
|
|||||||
location = location.pathAppended("ui_"
|
location = location.pathAppended("ui_"
|
||||||
+ sourceFile.completeBaseName()
|
+ sourceFile.completeBaseName()
|
||||||
+ singleVariableValue(Variable::HeaderExtension));
|
+ singleVariableValue(Variable::HeaderExtension));
|
||||||
return { FilePath::fromString(QDir::cleanPath(location.toString())) };
|
return {location.cleanPath()};
|
||||||
} else if (sourceFileType == FileType::StateChart) {
|
} else if (sourceFileType == FileType::StateChart) {
|
||||||
if (buildDir.isEmpty())
|
if (buildDir.isEmpty())
|
||||||
return { };
|
return { };
|
||||||
|
Reference in New Issue
Block a user