]> SALOME platform Git repositories - tools/install.git/commitdiff
Salome HOME
Optimize checking of native products process
authorvsr <vsr@opencascade.com>
Wed, 16 Feb 2005 06:13:38 +0000 (06:13 +0000)
committervsr <vsr@opencascade.com>
Wed, 16 Feb 2005 06:13:38 +0000 (06:13 +0000)
src/SALOME_InstallWizard.cxx

index 40e9481a44b5cbe1dcda4ffc83953054684d19ba..251e375a16845e96f10c4b2b31c5cfe012130cb7 100644 (file)
@@ -1051,9 +1051,10 @@ bool SALOME_InstallWizard::acceptData( const QString& pageTitle )
     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 );
       }