diff options
author | axis <qt-info@nokia.com> | 2009-11-27 15:09:55 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-12-11 09:10:37 (GMT) |
commit | 1be557c71982c13796afbc30d01fc00203ee0ecb (patch) | |
tree | 64cc572c7ff583861127fa81cdc8c85660aa9389 /qmake | |
parent | 48eb6baa27b02987e0b81d2964de1d0f1f3890c4 (diff) | |
download | Qt-1be557c71982c13796afbc30d01fc00203ee0ecb.zip Qt-1be557c71982c13796afbc30d01fc00203ee0ecb.tar.gz Qt-1be557c71982c13796afbc30d01fc00203ee0ecb.tar.bz2 |
Disable the forced profile recursion on Qt's Symbian build system.
This makes configure a lot faster.
Diffstat (limited to 'qmake')
-rw-r--r-- | qmake/project.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qmake/project.cpp b/qmake/project.cpp index 035362d..f56180b 100644 --- a/qmake/project.cpp +++ b/qmake/project.cpp @@ -551,8 +551,9 @@ static void init_symbian(const QMap<QString, QStringList>& vars) } } - // Force recursive on Symbian, as non-recursive is not really a viable option there - if (isForSymbian_value != isForSymbian_FALSE) + // Force recursive on Symbian native build system, as non-recursive is not really + // a viable option there + if (isForSymbian_value != isForSymbian_FALSE && isForSymbian_value != isForSymbian_MAKEFILE) Option::recursive = true; } |