diff options
Diffstat (limited to 'src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp')
-rw-r--r-- | src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp b/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp index 33f6fe4776..edd4f36e59 100644 --- a/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp +++ b/src/plugins/qt4projectmanager/wizards/mobilelibraryparameters.cpp @@ -41,19 +41,15 @@ MobileLibraryParameters::MobileLibraryParameters() : void MobileLibraryParameters::writeProFile(QTextStream &str) const { - if (type&Maemo) - writeMaemoProFile(str); + if (type&Linux) + writeLinuxProFile(str); } -void MobileLibraryParameters::writeMaemoProFile(QTextStream &str) const +void MobileLibraryParameters::writeLinuxProFile(QTextStream &str) const { str << "\n" "unix:!symbian {\n" - " maemo5 {\n" - " target.path = /opt/usr/lib\n" - " } else {\n" - " target.path = /usr/lib\n" - " }\n" + " target.path = /usr/lib\n" " INSTALLS += target\n" "}\n"; } |