Fix libexec path construction

Fixes: QTCREATORBUG-25648
Change-Id: I5da2cb1b2809f29a676a3929ce5967afb5601cd9
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Christian Kandeler
2021-04-29 10:05:37 +02:00
parent 74f8da1cd4
commit dabfd6c0ed

View File

@@ -491,7 +491,8 @@ QString ICore::userPluginPath()
FilePath ICore::libexecPath(const QString &rel)
{
return FilePath::fromString(
QDir::cleanPath(QApplication::applicationDirPath() + RELATIVE_LIBEXEC_PATH + pathHelper(rel)));
QDir::cleanPath(QApplication::applicationDirPath()
+ pathHelper(RELATIVE_LIBEXEC_PATH) + pathHelper(rel)));
}
FilePath ICore::crashReportsPath()