aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-10-31 14:56:24 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2018-10-31 14:08:35 +0000
commit41780038b9309ce34f9d2c09f0c12f8695eea995 (patch)
treeb45e1890627889ee83477f4f1e1aeb7dbf2ab5ab /src
parent38c897a0d45af8817df2756bc8f7e4489f21cf86 (diff)
Fix qbs build
Was broken by 38c897a0d4. Change-Id: Id02551fa9e7424075c5a708c3c06a3ce2be5f0e9 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/shared/bundledqt/bundledqt.qbs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/bundledqt/bundledqt.qbs b/src/shared/bundledqt/bundledqt.qbs
index d10a4e9c5..f36855b02 100644
--- a/src/shared/bundledqt/bundledqt.qbs
+++ b/src/shared/bundledqt/bundledqt.qbs
@@ -9,7 +9,8 @@ Product {
property bool deployQt: qbsbuildconfig.enableBundledQt && qbs.targetOS.contains("macos")
&& Qt.core.qtConfig.contains("rpath")
- property bool deployDebugLibraries: qbs.buildVariants.contains("debug")
+ property bool deployDebugLibraries: qbs.buildVariant === "debug"
+ || (qbs.buildVariants && qbs.buildVariants.contains("debug"))
readonly property string qtDebugLibrarySuffix: {
if (qbs.targetOS.contains("windows"))