qmake/generators/symbian/symmake_sbsv2.cpp
changeset 33 3e2da88830cd
parent 30 5dc02b23752f
child 37 758a864f9613
--- a/qmake/generators/symbian/symmake_sbsv2.cpp	Tue Jul 06 15:10:48 2010 +0300
+++ b/qmake/generators/symbian/symmake_sbsv2.cpp	Wed Aug 18 10:37:55 2010 +0300
@@ -104,6 +104,9 @@
         toItem.replace("\\", "/");
 #if defined(Q_OS_WIN)
         toItem.prepend(QDir::current().absolutePath().left(2)); // add drive
+        // add drive if it doesn't have one yet
+        //if (toItem.size() > 1 && toItem[1] != QLatin1Char(':'))
+        //    toItem.prepend(QDir::current().absolutePath().left(2));
 #endif
         t << "OPTION DEPLOY_SOURCE " << fromItem << endl;
         t << "OPTION DEPLOY_TARGET " << toItem << endl;
@@ -286,8 +289,6 @@
         t << "\t$(SBS) reallyclean -c " << item << "_urel" << testClause << endl;
     }
     t << endl;
-
-    generateExecutionTargets(t, debugPlatforms);
 }
 
 void SymbianSbsv2MakefileGenerator::writeBldInfExtensionRulesPart(QTextStream& t, const QString &iconTargetFile)