From 9676dbde2e7ef3d5d88c66397e438eb2a93db16f Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Fri, 7 Aug 2009 13:36:18 +0300 Subject: Fixed target name corruption in symmake --- qmake/generators/symbian/symmake.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qmake/generators/symbian/symmake.cpp b/qmake/generators/symbian/symmake.cpp index 248ea2e..b3fa0f2 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 -- cgit v0.12