log : changed semantic for start / join (now it's explicit)
This commit is contained in:
parent
90b131260b
commit
9d66b85492
@ -1140,10 +1140,12 @@ def build_process():
|
||||
self.env_path = env_path
|
||||
dump_environment(env_path)
|
||||
log_redirection = log_output(log_path, verbose, sys.stdout.isatty(), True)
|
||||
log_redirection.acquire()
|
||||
for phase_name, phase in zip(self.phases, self._InstallPhase_phases):
|
||||
tty.msg('Executing phase : \'{0}\''.format(phase_name))
|
||||
with log_redirection:
|
||||
getattr(self, phase)(self.spec, self.prefix)
|
||||
log_redirection.release()
|
||||
self.log()
|
||||
# Run post install hooks before build stage is removed.
|
||||
spack.hooks.post_install(self)
|
||||
|
Loading…
Reference in New Issue
Block a user