Changeset 10575

Show
Ignore:
Timestamp:
02/08/11 10:26:13 (2 years ago)
Author:
Snyder.Jason
Message:

removed an absolute path and replaced it with the sdr install path from the alf.cfg file

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ossiedev/trunk/tools/alf/ALF.py

    r10501 r10575  
    951951                              "You may need to change the temporary directory to one that you have write permissions to") 
    952952                return 
    953   
    954          
     953                 
     954                 
    955955        #till this place, all file related operations are done through framework fileManager 
    956         #generating temp compform files is done by Wavedev code. hence, passing the absolute 
    957         #path of the component files. so add "/sdr/dom". 
    958         my_compform = compform.compform(compName, "/sdr/dom" +compNameAndDir,  
    959                                         "/sdr/dom" +tmp_dir_name, tmp_wave_name) 
     956        #generating temp compform files is done by Wavedev code. hence, passing the sdr install 
     957        #path of the component files that should be in config/alf.cfg under installpath 
     958        my_compform = compform.compform(compName, self.installPath + '/' +compNameAndDir,  
     959                                        self.installPath + '/' +tmp_dir_name, tmp_wave_name) 
    960960        my_compform.create() 
    961961