summaryrefslogtreecommitdiffstats
path: root/configure.json
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2016-07-15 20:43:44 +0200
committerLars Knoll <lars.knoll@qt.io>2016-08-10 15:43:02 +0000
commit08f6545dcb37b661e63c42c4996fb4ed737070f4 (patch)
tree43a7d1e54198712ecd6fe58526d6e4a00716c5b6 /configure.json
parentbcd0653e10f86b5f9280151684e452fd6de1f36a (diff)
fix over-quoting of OPENSSL_LIBS and QT_HOST_CFLAGS_DBUS
we pass the pre-quoted value directly to the output function, which adds another layer of quoting. to avoid over-quoting, introduce the 'eval' attribute which sends the value through eval() first, thus removing the extra quoting. Change-Id: Ic63a50cb7eccc61b0f730476e124339aeb95586c Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'configure.json')
-rw-r--r--configure.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.json b/configure.json
index 2fbd0f3491..d9faed3b90 100644
--- a/configure.json
+++ b/configure.json
@@ -1617,7 +1617,7 @@
"condition": "features.openssl && tests.openssl-libs",
"output": [
"publicQtConfig",
- { "type": "varAssign", "name": "OPENSSL_LIBS", "value": "tests.openssl-libs.libs" },
+ { "type": "varAssign", "name": "OPENSSL_LIBS", "value": "tests.openssl-libs.libs", "eval": "true" },
{ "type": "define", "name": "QT_LINKED_OPENSSL" }
]
},
@@ -1790,7 +1790,7 @@
"description": "Qt D-Bus (Host)",
"autoDetect": "!config.android",
"condition": "tests.host-dbus",
- "output": [ { "type": "varAppend", "name": "QT_HOST_CFLAGS_DBUS", "value": "tests.host-dbus.cflags" } ]
+ "output": [ { "type": "varAppend", "name": "QT_HOST_CFLAGS_DBUS", "value": "tests.host-dbus.cflags", "eval": "true" } ]
},
"skip_modules": {
"output": [ { "type": "varAssign", "name": "QT_SKIP_MODULES", "value": "tests.skip_modules.value" } ]