diff options
author | Roy Mickos <ext-roy.mickos@nokia.com> | 2012-05-02 12:32:23 (GMT) |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-05-04 13:10:46 (GMT) |
commit | b14450aeb393acd6c951241d073947a178ccbc36 (patch) | |
tree | cf09128e1e996e48b53a85b067654a88fa6c0fdd /tests | |
parent | ffc21ca1a90ddd2920108ff25e10aab3c8335b30 (diff) | |
download | Qt-b14450aeb393acd6c951241d073947a178ccbc36.zip Qt-b14450aeb393acd6c951241d073947a178ccbc36.tar.gz Qt-b14450aeb393acd6c951241d073947a178ccbc36.tar.bz2 |
Add missing colon to tests/auto/auto.pro
The pro file has a missing colon in the last line regarding help.pro.
Although the intent was to exclude it from symbian compilation, the
missing colon caused that it was dropped from all platforms. This
fix will bring it back, while still excluding it from symbian.
Change-Id: I3cf05505d969182556458272cf10bc8847476468
Reviewed-by: Pasi Pentikäinen <ext-pasi.a.pentikainen@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/auto.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/auto.pro b/tests/auto/auto.pro index c677249..161de03 100644 --- a/tests/auto/auto.pro +++ b/tests/auto/auto.pro @@ -19,5 +19,5 @@ contains(QT_CONFIG, multimedia): SUBDIRS += multimedia.pro contains(QT_CONFIG, phonon): SUBDIRS += phonon.pro contains(QT_CONFIG, svg): SUBDIRS += svg.pro contains(QT_CONFIG, declarative): SUBDIRS += declarative.pro -!symbian SUBDIRS += help.pro +!symbian: SUBDIRS += help.pro |