summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2010-02-04 18:04:43 +0200
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2010-02-04 18:04:43 +0200
commit07d81d0e0f15f015c7436992a99ef4b1ec36ae1c (patch)
treead62a8333912f0a85e58973af6d77b19c4e8ce84 /qmake
parent9cc4ae77a73bd28ff495f36f26dd87c78b76b976 (diff)
Fixed the location where bootstrap.sis is looked for.
Task-number: QTBUG-7908 Reviewed-by: TrustMe
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/symbian/symmake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/symbian/symmake.cpp b/qmake/generators/symbian/symmake.cpp
index 8f0abf44cb..6c44f0bc20 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;
}