diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-03-11 13:08:30 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-03-11 13:31:24 (GMT) |
commit | 90363486e7be80ec533be670cc54aee934c808db (patch) | |
tree | 5a57cc2efad1b604f90350d30f68721b09d61a02 /mkspecs | |
parent | af2f85585cd90c27b39600c75bdcefa78d52c4ea (diff) | |
download | Qt-90363486e7be80ec533be670cc54aee934c808db.zip Qt-90363486e7be80ec533be670cc54aee934c808db.tar.gz Qt-90363486e7be80ec533be670cc54aee934c808db.tar.bz2 |
Fixed RSS_RULES statement in application_icon.prf
RSS_RULES were being overwritten instead of being appended to
in applicaton_icon.prf.
Reviewed-by: Janne Anttila
Diffstat (limited to 'mkspecs')
-rw-r--r-- | mkspecs/features/symbian/application_icon.prf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mkspecs/features/symbian/application_icon.prf b/mkspecs/features/symbian/application_icon.prf index 1edbe14..3a26325 100644 --- a/mkspecs/features/symbian/application_icon.prf +++ b/mkspecs/features/symbian/application_icon.prf @@ -3,7 +3,7 @@ load(data_caging_paths) # If no_icon keyword exist, the S60 UI app is just made hidden. This because S60 app FW # requires the registration resource file to exist always contains( CONFIG, no_icon ) { - symbian:RSS_RULES ="hidden = KAppIsHidden;" + symbian:RSS_RULES += "hidden = KAppIsHidden;" CONFIG -= no_icon } else { # There is no point in compiling the MIF icon if no_icon CONFIGS is set |