forked from qt-creator/qt-creator
Fix libexec path construction
Fixes: QTCREATORBUG-25648 Change-Id: I5da2cb1b2809f29a676a3929ce5967afb5601cd9 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -491,7 +491,8 @@ QString ICore::userPluginPath()
|
|||||||
FilePath ICore::libexecPath(const QString &rel)
|
FilePath ICore::libexecPath(const QString &rel)
|
||||||
{
|
{
|
||||||
return FilePath::fromString(
|
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()
|
FilePath ICore::crashReportsPath()
|
||||||
|
Reference in New Issue
Block a user