summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeon Buckel <leon.buckel@bee360.com>2023-05-12 12:08:27 +0200
committerIvan Komissarov <ABBAPOH@gmail.com>2023-05-12 14:23:04 +0000
commitc07a7d1dc57d63810ad47d0d654626dc140b49ff (patch)
tree90e031a1c04e834a1011b7a14dc215627c407c08
parent9f4254a94eba886de6960351e8ca20e40622b4ee (diff)
downloadqbs-c07a7d1dc57d63810ad47d0d654626dc140b49ff.tar.gz
Clean paths from prl file
Task-number: QBS-1732 Change-Id: I4544d6203b9647b85fff4cc319f2ea5809749a59 Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com>
-rw-r--r--share/qbs/module-providers/Qt/templates/qml.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/module-providers/Qt/templates/qml.js b/share/qbs/module-providers/Qt/templates/qml.js
index ad76a0d0f..38462dcf7 100644
--- a/share/qbs/module-providers/Qt/templates/qml.js
+++ b/share/qbs/module-providers/Qt/templates/qml.js
@@ -93,7 +93,7 @@ function getLibsForPlugin(pluginData, product)
otherLibsLine = otherLibsLine.replace(/\$\$\[QT_INSTALL_PLUGINS\]/g, qtPluginDir);
otherLibsLine = otherLibsLine.replace(/\$\$\[QT_INSTALL_PREFIX\]/g, qtDir);
otherLibsLine = otherLibsLine.replace(/\$\$\[QT_INSTALL_QML\]/g, qtQmlPath);
- otherLibs = otherLibs.concat(otherLibsLine.split(' '));
+ otherLibs = otherLibs.concat(otherLibsLine.split(' ').map(FileInfo.cleanPath));
}
}
if (!pluginLib)