summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2012-09-11 12:44:39 +0200
committerQt by Nokia <qt-info@nokia.com>2012-09-11 18:13:13 +0200
commitea65d926a0b625fff6d4b2b523f52f21a4896219 (patch)
tree2234466feeac892f7f6bd76228ee64e044b1abd1
parent07457d84b55b9b0d0a427881819bb7b9af102866 (diff)
Fix qmake syntax problem in zlib_dependency.pri.
Without the double quotes, the apostrophe is considered an unmatched single quote by the pro file parser. Change-Id: Ibd1b38e2b714b0a99baf95c4e69fe87a0a962630 Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
-rw-r--r--src/3rdparty/zlib_dependency.pri2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/zlib_dependency.pri b/src/3rdparty/zlib_dependency.pri
index 8373a8c..77a1b24 100644
--- a/src/3rdparty/zlib_dependency.pri
+++ b/src/3rdparty/zlib_dependency.pri
@@ -6,5 +6,5 @@ contains(QT_CONFIG, system-zlib) {
} else {
# We could copy the zlib sources over to this module, but for now we don't.
# INCLUDEPATH += $$PWD/zlib
- error(zlib not available: Qt was not built with the system's zlib)
+ error("zlib not available: Qt was not built with the system's zlib")
}