for ( unsigned i = 0; i < natives.count(); i++ ) {
item = findItem( natives[ i ] );
if ( item ) {
+ QString dependOn = productsMap[ item ].getDependancies().join(" ");
QString script = "cd ./config_files/;" + item->text(2) + " try_native " +
QFileInfo( tmpFolder ).absFilePath() + " " + QDir::currentDirPath() + "/Products " + QFileInfo( tgtFolder ).absFilePath() + " " +
- QUOTE(DefineDependeces(productsMap)) + " " + item->text(0);
+ QUOTE(dependOn) + " " + item->text(0);
myThread->addCommand( item, script );
}