Re: libtool: handle fork() error

2018-08-27 Thread Marc Espie
On Sun, Aug 26, 2018 at 04:13:11PM +0200, Christian Weisgerber wrote: > I noticed this curious error in a package bulk build: > Use of uninitialized value $pid in numeric eq (==) at > /usr/libdata/perl5/LT/Exec.pm line 96. > > Perl's fork() wrapper returns undef rather than -1 on error. > Handle

Re: libtool: handle fork() error

2018-08-26 Thread Jeremie Courreges-Anglas
On Sun, Aug 26 2018, Christian Weisgerber wrote: > I noticed this curious error in a package bulk build: > Use of uninitialized value $pid in numeric eq (==) at > /usr/libdata/perl5/LT/Exec.pm line 96. > > Perl's fork() wrapper returns undef rather than -1 on error. > Handle this correctly. OK?

libtool: handle fork() error

2018-08-26 Thread Christian Weisgerber
I noticed this curious error in a package bulk build: Use of uninitialized value $pid in numeric eq (==) at /usr/libdata/perl5/LT/Exec.pm line 96. Perl's fork() wrapper returns undef rather than -1 on error. Handle this correctly. OK? Index: LT/Exec.pm ==