Fix a typo in "QT_INSTALL_QML" key usage (removing extra space)
The key with a space at the end does not seem to exists neither in my testing environment (container reproducing current travis.yml file) nor on my main system.
This commit is contained in:
+3
-3
@@ -1076,9 +1076,9 @@ bool deployQmlImports(const QString &appDirPath, DeploymentInfo deploymentInfo,
|
|||||||
}
|
}
|
||||||
|
|
||||||
argumentList.append( "-importPath");
|
argumentList.append( "-importPath");
|
||||||
argumentList.append(qtToBeBundledInfo.value("QT_INSTALL_QML "));
|
argumentList.append(qtToBeBundledInfo.value("QT_INSTALL_QML"));
|
||||||
|
|
||||||
LogDebug() << "qmlImportsPath (QT_INSTALL_QML):" << qtToBeBundledInfo.value("QT_INSTALL_QML ");
|
LogDebug() << "qmlImportsPath (QT_INSTALL_QML):" << qtToBeBundledInfo.value("QT_INSTALL_QML");
|
||||||
|
|
||||||
// run qmlimportscanner
|
// run qmlimportscanner
|
||||||
QProcess qmlImportScanner;
|
QProcess qmlImportScanner;
|
||||||
@@ -1165,7 +1165,7 @@ bool deployQmlImports(const QString &appDirPath, DeploymentInfo deploymentInfo,
|
|||||||
if (deploymentInfo.deployedLibraries.contains("QtWidgets") && qtQuickContolsInUse) {
|
if (deploymentInfo.deployedLibraries.contains("QtWidgets") && qtQuickContolsInUse) {
|
||||||
LogNormal() << "Deploying QML import QtQuick/PrivateWidgets";
|
LogNormal() << "Deploying QML import QtQuick/PrivateWidgets";
|
||||||
QString name = "QtQuick/PrivateWidgets";
|
QString name = "QtQuick/PrivateWidgets";
|
||||||
QString path = qtToBeBundledInfo.value("QT_INSTALL_QML ") + QLatin1Char('/') + name;
|
QString path = qtToBeBundledInfo.value("QT_INSTALL_QML") + QLatin1Char('/') + name;
|
||||||
deployQmlImport(appDirPath, deploymentInfo.rpathsUsed, path, name);
|
deployQmlImport(appDirPath, deploymentInfo.rpathsUsed, path, name);
|
||||||
LogNormal() << "";
|
LogNormal() << "";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user