diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-02-04 16:04:43 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-02-04 16:04:43 (GMT) |
commit | 07d81d0e0f15f015c7436992a99ef4b1ec36ae1c (patch) | |
tree | ad62a8333912f0a85e58973af6d77b19c4e8ce84 | |
parent | 9cc4ae77a73bd28ff495f36f26dd87c78b76b976 (diff) | |
download | Qt-07d81d0e0f15f015c7436992a99ef4b1ec36ae1c.zip Qt-07d81d0e0f15f015c7436992a99ef4b1ec36ae1c.tar.gz Qt-07d81d0e0f15f015c7436992a99ef4b1ec36ae1c.tar.bz2 |
Fixed the location where bootstrap.sis is looked for.
Task-number: QTBUG-7908
Reviewed-by: TrustMe
-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 8f0abf4..6c44f0b 100644 --- a/qmake/generators/symbian/symmake.cpp +++ b/qmake/generators/symbian/symmake.cpp @@ -517,7 +517,7 @@ void SymbianMakefileGenerator::generatePkgFile(const QString &iconFile, Deployme twf << "\"" << currentPath << "/" << sisName << "\" - \"c:\\adm\\" << sisName << "\"" << endl; QString bootStrapPath = QLibraryInfo::location(QLibraryInfo::PrefixPath); - bootStrapPath.append("/src/s60installs/bootstrap.sis"); + bootStrapPath.append("/bootstrap.sis"); QFileInfo fi(fileInfo(bootStrapPath)); twf << "@\"" << fi.absoluteFilePath() << "\",(0x2002CCCD)" << endl; } |