Re: MAKE_RESTARTS interference with trap SIGINT

2013-05-08 Thread Stephan Bergmann
On 05/06/2013 07:03 AM, Norbert Thiebaud wrote: I have a wrapper script around a make fo LO (tinderbox scripting)... I have added soem refinement so that it handle gracefully a Ctrl-C while it is running to that effect I've installed a signal handler in bash using 'trap' on, among other SIGINT

Re: MAKE_RESTARTS interference with trap SIGINT

2013-05-08 Thread Norbert Thiebaud
On Wed, May 8, 2013 at 4:14 AM, Stephan Bergmann sberg...@redhat.com wrote: But why should make use SIGINT to restart itself (for me, it just does an exec), and, more importantly, how should the parent shell process be able to pick that up? all I know is: with a trap SIGINT in the calling

MAKE_RESTARTS interference with trap SIGINT

2013-05-06 Thread Norbert Thiebaud
Since I've chased that one for a while, I'll share here that pita: I have a wrapper script around a make fo LO (tinderbox scripting)... I have added soem refinement so that it handle gracefully a Ctrl-C while it is running to that effect I've installed a signal handler in bash using 'trap' on,