summaryrefslogtreecommitdiffstats
path: root/src/network/configure.pri
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2018-04-17 18:32:30 +0200
committerOswald Buddenhagen <oswald.buddenhagen@qt.io>2018-06-12 10:03:32 +0000
commiteaa3417901d87e5544f3d64c0faa420836361992 (patch)
treee5fbb4d506beedb6009db25f2746808a84737f56 /src/network/configure.pri
parentd2d87e6a9fd176b0b27159ad8a04e5522f7f7ba6 (diff)
configure: dequote library sources asap
the json format uses single strings for library sources, as that leads to less noisy source text. however, this implies the need for de-quoting and subsequent re-quoting whenever the values are processed. so change the internal representation to regular qmake string lists as the first thing when processing the lib source, and re-quote only when outputting the values. CFLAGS are excluded, because we'll deal with them differently. Change-Id: I4ab43d98085ea9f6601fd21ac2afb5bce4f7e2a9 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/network/configure.pri')
-rw-r--r--src/network/configure.pri2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/configure.pri b/src/network/configure.pri
index f87b7f635f..fa502db1d1 100644
--- a/src/network/configure.pri
+++ b/src/network/configure.pri
@@ -3,7 +3,7 @@
defineTest(qtConfLibrary_openssl) {
libs = $$getenv("OPENSSL_LIBS")
!isEmpty(libs) {
- $${1}.libs = $$libs
+ eval($${1}.libs = $$libs)
export($${1}.libs)
return(true)
}