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

@@ -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