summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIikka Eklund <iikka.eklund@digia.com>2013-05-05 08:55:05 +0300
committerIikka Eklund <iikka.eklund@digia.com>2013-05-05 08:14:38 +0200
commit076c72370e181d3b3c33dec10b62dff4f7aaa778 (patch)
tree8b71a36d9a782ec2aca000cef850d99531e973af
parentde83c02bef31f86ec87fb691974b7f056648f8df (diff)
files-to-patch-windows-emb-arm missing from qtpatchoperationqt5
files-to-patch-windows-emb-arm should be checked in qtpatchoperation as well. Otherwise it can not be found when reuqested. The files-to-patch-windows-emb-arm file itself already exists under resources. Change-Id: I2234ad144def593f5e6c48f50c16878e2eb0a843 Reviewed-by: Iikka Eklund <iikka.eklund@digia.com>
-rw-r--r--src/libs/installer/qtpatchoperation.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libs/installer/qtpatchoperation.cpp b/src/libs/installer/qtpatchoperation.cpp
index f471324b3..6ac7eec7d 100644
--- a/src/libs/installer/qtpatchoperation.cpp
+++ b/src/libs/installer/qtpatchoperation.cpp
@@ -210,6 +210,8 @@ bool QtPatchOperation::performOperation()
QFile patchFileListFile;
if (type == QLatin1String("windows"))
patchFileListFile.setFileName(QLatin1String(":/files-to-patch-windows"));
+ else if (type == QLatin1String("windows-emb-arm"))
+ patchFileListFile.setFileName(QLatin1String(":/files-to-patch-windows-emb-arm"));
else if (type == QLatin1String("linux"))
patchFileListFile.setFileName(QLatin1String(":/files-to-patch-linux"));
else if (type == QLatin1String("linux-emb-arm"))