summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Komissarov <abbapoh@gmail.com>2021-09-27 14:03:11 +0300
committerIvan Komissarov <ABBAPOH@gmail.com>2021-09-28 13:53:00 +0000
commita3c1c1693f3a8d4623d1484bd1461cf589d5ef21 (patch)
treee73ed36b232a15fdc02691d679917133c9203644
parent61d34a33a9fdd27565bfdbe47da2117879e7f07b (diff)
downloadqbs-a3c1c1693f3a8d4623d1484bd1461cf589d5ef21.tar.gz
qmlcachegen: fix mapping separator
The qmlcachegen code expects '=', not ':' (despite the fact qmlcachegen --help says otherwise) Task-number: QBS-1676 Change-Id: I281502f45b8dc760c0c78ab4a27fcbebacef8a5f Reviewed-by: Ulf Hermann <ulf.hermann@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--share/qbs/module-providers/Qt/templates/quick.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/module-providers/Qt/templates/quick.qbs b/share/qbs/module-providers/Qt/templates/quick.qbs
index 8cd79fa70..00174150e 100644
--- a/share/qbs/module-providers/Qt/templates/quick.qbs
+++ b/share/qbs/module-providers/Qt/templates/quick.qbs
@@ -176,7 +176,7 @@ QtModule {
if (info.newQrcFileName) {
loaderFlags.push("--resource-file-mapping="
+ FileInfo.fileName(info.qrcFilePath)
- + ":" + info.newQrcFileName);
+ + '=' + info.newQrcFileName);
// Qt 5.15 doesn't really filter anyting but merely copies the qrc
// content to the new location
var args = ["--filter-resource-file",