diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-08-27 09:34:44 +0300 |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-08-27 09:34:44 +0300 |
commit | 7f08c316c4accf21c37ba75b299ca3504cb1a2ec (patch) | |
tree | ababd1f4f9cd32dedcc136ad9b63ceebb7fb7d76 /qmake | |
parent | c2bfd3a4e13515bc9507250a71e2f04612d78a04 (diff) | |
download | qt4-tools-7f08c316c4accf21c37ba75b299ca3504cb1a2ec.tar.gz |
Fixed createpackage.bat params to be more consistent with make targets.
Createpackage.bat now accepts also release/debug instead of urel/udeb.
Also the order is swicthed so that now you need to call:
>createpackage.bat [-i] pkgfile release armv5 [certificate key [passphrase]]
instead of
>createpackage.bat [-i] pkgfile armv5 urel [certificate key [passphrase]]
RevBy: Miikka Heikkinen
Diffstat (limited to 'qmake')
-rw-r--r-- | qmake/generators/symbian/symmake.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/symbian/symmake.cpp b/qmake/generators/symbian/symmake.cpp index 13feb259b8..5ce43046af 100644 --- a/qmake/generators/symbian/symmake.cpp +++ b/qmake/generators/symbian/symmake.cpp @@ -1645,7 +1645,7 @@ void SymbianMakefileGenerator::writeSisxTargets(QTextStream &t) t << OK_SISX_TARGET ":" << endl; - QString pkgcommand = QString("\tcreatepackage.bat %1_template.%2 $(PLATFORM) $(TARGET) $(CERTIFICATE) $(KEY) $(PASSPHRASE)") + QString pkgcommand = QString("\tcreatepackage.bat %1_template.%2 $(TARGET) $(PLATFORM) $(CERTIFICATE) $(KEY) $(PASSPHRASE)") .arg(fileInfo(project->projectFile()).completeBaseName()) .arg("pkg"); t << pkgcommand << endl; |