summaryrefslogtreecommitdiffstats
path: root/src/gui/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/gui/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/gui/configure.pri')
-rw-r--r--src/gui/configure.pri2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/configure.pri b/src/gui/configure.pri
index fcd2d1f73e..b40536e41d 100644
--- a/src/gui/configure.pri
+++ b/src/gui/configure.pri
@@ -7,7 +7,7 @@ defineTest(qtConfLibrary_freetype) {
for (p, TRY_INCLUDEPATHS) {
includedir = $$p/freetype2
exists($$includedir) {
- $${1}.includedir = "$$val_escape(includedir)"
+ $${1}.includedir = $$includedir
export($${1}.includedir)
return(true)
}