Changeset 314 for tbroadcast


Ignore:
Timestamp:
Nov 13, 2006, 11:31:12 AM (18 years ago)
Author:
garonne
Message:

add output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tbroadcast/v2.0.3/python/tbroadcast.py

    r313 r314  
    526526        lines = lines +  '\t@echo "# ('+str(self.counter)+'/'+str(len(self.packages))+') Now trying ['+newcommand+'] in '+ self.packages[package]['path']+'"\n'
    527527        lines = lines +  '\t@echo "#--------------------------------------------------------------"\n'
     528        lines = lines +  'ifdef LOCATION\n'
    528529        lines = lines + '\t+@cd ' + self.packages[package]['path']           
    529         lines = lines + ' && ' + newcommand               
    530         lines = lines + '\n\n'
     530        lines = lines + ' && ' + newcommand + ' >& $(LOCATION)/'+ package +'.loglog\n'
     531        lines = lines + 'else\n'
     532        lines = lines + '\t+@cd ' + self.packages[package]['path']           
     533        lines = lines + ' && ' + newcommand + '\n'
     534        lines = lines + 'endif\n\n'               
    531535        return lines
    532536       
Note: See TracChangeset for help on using the changeset viewer.