diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-05-18 08:37:04 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-05-18 08:50:13 (GMT) |
commit | acee77966603ed968e68ed36337b90fa32c5062b (patch) | |
tree | 993733a71d4acc99fc103d583b99bca7464d960e /qmake | |
parent | 61caa759298e5dd43d9cad3a6cfb396d5b258dd1 (diff) | |
download | Qt-acee77966603ed968e68ed36337b90fa32c5062b.zip Qt-acee77966603ed968e68ed36337b90fa32c5062b.tar.gz Qt-acee77966603ed968e68ed36337b90fa32c5062b.tar.bz2 |
Fix pkg_prerules handling for installer packages
The removed check was causing dropping of vendor info from installer
package files. No need to check for header in rawPkgPreRules as it would
never get there in the first place; it gets placed into headerRules
instead.
Reviewed-by: Shane Kearns
Diffstat (limited to 'qmake')
-rw-r--r-- | qmake/generators/symbian/symbiancommon.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/qmake/generators/symbian/symbiancommon.cpp b/qmake/generators/symbian/symbiancommon.cpp index ce796c3..aa44afc 100644 --- a/qmake/generators/symbian/symbiancommon.cpp +++ b/qmake/generators/symbian/symbiancommon.cpp @@ -305,11 +305,6 @@ void SymbianCommonGenerator::generatePkgFile(const QString &iconFile, bool epocB t << item << endl; tw << item << endl; } - // Only regular and stub should have pkg header if that is defined using prerules. - else if (!item.startsWith("#")) { - t << item << endl; - ts << item << endl; - } else { t << item << endl; ts << item << endl; |