From 1f4e78d8a67a7c5d51e4a653c69dc9f97cacfb52 Mon Sep 17 00:00:00 2001
From: BogDan Vatra <bogdan@kdab.com>
Date: Wed, 6 Sep 2017 14:37:46 +0300
Subject: [PATCH] Android: Fix search path for QML modules

QT_INSTALL_IMPORTS was used by Qt 4.x, Qt 5.x uses QT_INSTALL_QML

Change-Id: I9c25ef005f3c5dc8cfc8d0b965426e22b542fb70
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Vikas Pachdha <vikas.pachdha@qt.io>
---
 src/plugins/android/androiddebugsupport.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/android/androiddebugsupport.cpp b/src/plugins/android/androiddebugsupport.cpp
index 5bc850fe643..d6036231cb0 100644
--- a/src/plugins/android/androiddebugsupport.cpp
+++ b/src/plugins/android/androiddebugsupport.cpp
@@ -55,7 +55,7 @@ namespace Internal {
 static const char * const qMakeVariables[] = {
          "QT_INSTALL_LIBS",
          "QT_INSTALL_PLUGINS",
-         "QT_INSTALL_IMPORTS"
+         "QT_INSTALL_QML"
 };
 
 static QStringList qtSoPaths(QtSupport::BaseQtVersion *qtVersion)
-- 
GitLab