summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2009-08-07 13:36:18 +0300
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2009-08-07 13:36:18 +0300
commit9676dbde2e7ef3d5d88c66397e438eb2a93db16f (patch)
treec339b8960430c72e04929a77af3b1c37503aec2b /qmake
parent7cd9b8dee99cec502b1498adf54832c3247213f3 (diff)
Fixed target name corruption in symmake
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/symbian/symmake.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qmake/generators/symbian/symmake.cpp b/qmake/generators/symbian/symmake.cpp
index 248ea2e233..b3fa0f2ef8 100644
--- a/qmake/generators/symbian/symmake.cpp
+++ b/qmake/generators/symbian/symmake.cpp
@@ -763,19 +763,19 @@ void SymbianMakefileGenerator::addMacro(QTextStream& t, const QString& value)
void SymbianMakefileGenerator::writeMmpFileTargetPart(QTextStream& t)
{
if (targetType == TypeExe) {
- t << MMP_TARGET << "\t\t" << fixedTarget.append(".exe") << "\n";
+ t << MMP_TARGET << "\t\t" << fixedTarget << ".exe" << endl;
if (project->values("CONFIG").contains("stdbinary", Qt::CaseInsensitive))
t << MMP_TARGETTYPE << "\t\t" << "STDEXE" << endl;
else
t << MMP_TARGETTYPE << "\t\t" << "EXE" << endl;
} else if (targetType == TypeDll || targetType == TypePlugin) {
- t << MMP_TARGET << "\t\t" << fixedTarget.append(".dll") << "\n";
+ t << MMP_TARGET << "\t\t" << fixedTarget << ".dll" << endl;
if (project->values("CONFIG").contains("stdbinary", Qt::CaseInsensitive))
t << MMP_TARGETTYPE << "\t\t" << "STDDLL" << endl;
else
t << MMP_TARGETTYPE << "\t\t" << "DLL" << endl;
} else if (targetType == TypeLib) {
- t << MMP_TARGET << "\t\t" << fixedTarget.append(".lib") << "\n";
+ t << MMP_TARGET << "\t\t" << fixedTarget << ".lib" << endl;
if (project->values("CONFIG").contains("stdbinary", Qt::CaseInsensitive))
t << MMP_TARGETTYPE << "\t\t" << "STDLIB" << endl;
else