diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-06-08 08:10:45 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-06-08 08:25:49 (GMT) |
commit | 544eca4582e20d093e9345799b3485eb2ba56e96 (patch) | |
tree | a479cd0bfc3cfef2094a48577135cd0008fb41a3 /qmake/generators | |
parent | ef47b83aa47c687d2543ddc26ff3a6decca1b4ce (diff) | |
download | Qt-544eca4582e20d093e9345799b3485eb2ba56e96.zip Qt-544eca4582e20d093e9345799b3485eb2ba56e96.tar.gz Qt-544eca4582e20d093e9345799b3485eb2ba56e96.tar.bz2 |
Change the directory where smart-installable application package is
For security reasons, it is better to install application packages
into the private directory of the smart installer rather than
a public directory.
Task-number: QTBUG-11288
Reviewed-by: Aleksandar Sasha Babic
Diffstat (limited to 'qmake/generators')
-rw-r--r-- | qmake/generators/symbian/symbiancommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/symbian/symbiancommon.cpp b/qmake/generators/symbian/symbiancommon.cpp index f8b3aa5..58729d2 100644 --- a/qmake/generators/symbian/symbiancommon.cpp +++ b/qmake/generators/symbian/symbiancommon.cpp @@ -503,7 +503,7 @@ void SymbianCommonGenerator::generatePkgFile(const QString &iconFile, bool epocB // Wrapped files deployment QString currentPath = qmake_getpwd(); QString sisName = QString("%1.sis").arg(pkgTarget); - twf << "\"" << currentPath << "/" << sisName << "\" - \"c:\\adm\\" << sisName << "\"" << endl; + twf << "\"" << currentPath << "/" << sisName << "\" - \"c:\\private\\2002CCCE\\import\\" << sisName << "\"" << endl; QString bootStrapPath = QLibraryInfo::location(QLibraryInfo::PrefixPath); bootStrapPath.append("/smartinstaller.sis"); |