diff --git a/bootstrap/socInstaller.py b/bootstrap/socInstaller.py index 3570dcce..30df34d1 100755 --- a/bootstrap/socInstaller.py +++ b/bootstrap/socInstaller.py @@ -398,7 +398,8 @@ class Report ( object ): for attachement in self.attachements: self.message.attach( attachement ) - print "Sending mail report to <%s>" % self.conf.receivers + print "Sending mail report to:" + for receiver in self.conf.receivers: print ' <%s>' % receiver session = smtplib.SMTP( 'localhost' ) session.sendmail( self.conf.sender, self.conf.receivers, self.message.as_string() ) session.quit() @@ -434,6 +435,9 @@ try: if options.rmSource or options.rmAll: conf.rmSource = True if options.rmBuild or options.rmAll: conf.rmBuild = True + if conf.doBuild: conf.openLog( 'build' ) + if conf.doBenchs: conf.openLog( 'benchs' ) + gitSupports = [] for supportRepo in conf.supportRepos: gitSupports.append( GitRepository( supportRepo, conf.srcDir+'/support' ) ) @@ -472,9 +476,6 @@ try: , ' <%s>' % ccbBin ] ) - if conf.doBuild: conf.openLog( 'build' ) - if conf.doBenchs: conf.openLog( 'benchs' ) - buildCommand = '%s --root=%s --project=support --project=coriolis --project=chams --make="-j%%d install" %%s' \ % (ccbBin,conf.rootDir) benchsCommand = 'cd %s/benchs && ./bin/go.sh clean && ./bin/go.sh lvx' \