diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2009-10-14 12:48:27 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2009-10-14 12:48:27 (GMT) |
commit | cad0ead9c2c5d533044fd469f5528e1e47cb9c0f (patch) | |
tree | abcdbf5e6ba40f58cea685eb11d1f8212cc4925e /tools | |
parent | c1c2e9c395398021381b30f917f92be58087af11 (diff) | |
download | Qt-cad0ead9c2c5d533044fd469f5528e1e47cb9c0f.zip Qt-cad0ead9c2c5d533044fd469f5528e1e47cb9c0f.tar.gz Qt-cad0ead9c2c5d533044fd469f5528e1e47cb9c0f.tar.bz2 |
Synced QT_BUILD_PARTS in .qmake.cache and projects.pro for Symbian.
Projects.pro is forcing QT_BUILD_PARTS to omit docs and translations,
but configure still outputted those into .qmake.cache. Fixed
configure to also omit them for Symbian builds to make building demos
work equally whether built by from root or not.
Task-number: QT-1018
Reviewed-by: axis
Diffstat (limited to 'tools')
-rw-r--r-- | tools/configure/configureapp.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index a0db867..f57f3a8 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -1465,6 +1465,9 @@ void Configure::applySpecSpecifics() dictionary[ "SQL_SQLITE" ] = "yes"; dictionary[ "SQL_SQLITE_LIB" ] = "system"; + // Disable building docs and translations for now + disabledBuildParts << "docs" << "translations"; + } else if(dictionary[ "XQMAKESPEC" ].startsWith("linux")) { //TODO actually wrong. //TODO dictionary[ "STYLE_WINDOWSXP" ] = "no"; |