Maemo: Change installation prefix for non-Fremantle systems.

- /usr/local -> /usr
- Technically, this changes the default installation path for all
  non-Fremantle UNIX systems.
This commit is contained in:
Christian Kandeler
2010-12-01 13:54:10 +01:00
parent 1477165e1c
commit 7a5c004763
4 changed files with 4 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ symbian {
installPrefix = /opt/usr
desktopfile.path = /usr/share/applications/hildon
} else {
installPrefix = /usr/local
installPrefix = /usr
desktopfile.path = /usr/share/applications
!isEqual(PWD,$$OUT_PWD) {
copyCommand = @echo Copying application data...

View File

@@ -43,7 +43,7 @@ symbian {
installPrefix = /opt/usr
desktopfile.path = /usr/share/applications/hildon
} else {
installPrefix = /usr/local
installPrefix = /usr
desktopfile.path = /usr/share/applications
!isEqual(PWD,$$OUT_PWD) {
copyCommand = @echo Copying application data...

View File

@@ -359,7 +359,7 @@ QString MaemoDeployableListModel::installPrefix() const
const MaemoToolChain *const tc = maemoToolchain();
QTC_ASSERT(tc, return QString());
return QLatin1String(tc->version() == MaemoToolChain::Maemo5
? "/opt/usr" : "/usr/local");
? "/opt/usr" : "/usr");
}
} // namespace Qt4ProjectManager

View File

@@ -112,7 +112,7 @@ void MobileLibraryParameters::writeMaemoProFile(QTextStream &str) const
" maemo5 {\n"
" target.path = /opt/usr/lib\n"
" } else {\n"
" target.path = /usr/local/lib\n"
" target.path = /usr/lib\n"
" }\n"
" INSTALLS += target\n"
"}\n";