diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-06-09 10:37:09 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-06-09 10:37:09 (GMT) |
commit | 846c49cd1c0730143888a1deb0ab32811583014f (patch) | |
tree | 224b6c65a80f262285b6b8222dea54ec60fe6901 /src | |
parent | b78226ebb4517463c7a24535d2f1bd2cfcb6ac4e (diff) | |
download | Qt-846c49cd1c0730143888a1deb0ab32811583014f.zip Qt-846c49cd1c0730143888a1deb0ab32811583014f.tar.gz Qt-846c49cd1c0730143888a1deb0ab32811583014f.tar.bz2 |
Fixed STL dependency for Symbian.
The STL config is stored in CONFIG qmake variable, not in QT_CONFIG.
Diffstat (limited to 'src')
-rw-r--r-- | src/s60installs/qt_libs.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/s60installs/qt_libs.pro b/src/s60installs/qt_libs.pro index 9aadfc0..e9da90d 100644 --- a/src/s60installs/qt_libs.pro +++ b/src/s60installs/qt_libs.pro @@ -41,7 +41,7 @@ symbian: { contains(QT_CONFIG, openssl) | contains(QT_CONFIG, openssl-linked) { qtlibraries.depends += "(0x200110CB), 1, 5, 1, {\"Open C LIBSSL Common\"}" } - contains(QT_CONFIG, stl) { + contains(CONFIG, stl) { qtlibraries.depends += "(0x2000F866), 1, 0, 0, {\"Standard C++ Library Common\"}" } |