QmlJSDebug: Enable compilation of library also for Symbian

This commit is contained in:
Kai Koehne
2011-04-29 14:07:14 +02:00
parent 001793fe79
commit af9a307c15
6 changed files with 16 additions and 8 deletions

View File

@@ -273,8 +273,8 @@ bool BuildableHelperLibrary::buildHelper(const BuildHelperArguments &arguments,
return false;
}
log->append(QCoreApplication::translate("ProjectExplorer::BuildableHelperLibrary",
"Running %1 ...\n").arg(makeFullPath));
if (!runBuildProcess(proc, makeFullPath, QStringList(), 120000, false, log, errorMessage))
"Running %1 %2 ...\n").arg(makeFullPath, arguments.makeArguments.join(" ")));
if (!runBuildProcess(proc, makeFullPath, arguments.makeArguments, 120000, false, log, errorMessage))
return false;
return true;
}