Re: [U-Boot] [PATCH 4/7] tools/genboardscfg.py: wait for unfinished subprocesses before error-out

2014-08-20 Thread Simon Glass
On 20 August 2014 05:47, Masahiro Yamada wrote: > When an error occurs or the program is terminated by the user > on the way, the destructer __del__ of class Slot is invoked and > the work directories are removed. > > We have to make sure there are no subprocesses (in this case, > "make O= ...") u

[U-Boot] [PATCH 4/7] tools/genboardscfg.py: wait for unfinished subprocesses before error-out

2014-08-20 Thread Masahiro Yamada
When an error occurs or the program is terminated by the user on the way, the destructer __del__ of class Slot is invoked and the work directories are removed. We have to make sure there are no subprocesses (in this case, "make O= ...") using the work directories before removing them. Otherwise t