pkg-perl-maintainers team mailing list archive
-
pkg-perl-maintainers team
-
Mailing list archive
-
Message #02132
[Bug 935525] Re: libglib-perl version 2:1.241-1 FTBFS on i386 in precise
The child process is literally doing nothing but calling POSIX::_exit. I
find it hard to believe that the problem is that a slow machine takes
more than 30 seconds to process that. I think it's more likely there's
another problem here.
my $pid = fork();
if (! defined $pid) {
die "oops, cannot fork: $!";
}
if ($pid == 0) {
# child
require POSIX;
POSIX::_exit(42); # no END etc cleanups
}
--
You received this bug notification because you are a member of Debian
Perl Group, which is subscribed to libglib-perl in Ubuntu.
https://bugs.launchpad.net/bugs/935525
Title:
libglib-perl version 2:1.241-1 FTBFS on i386 in precise
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libglib-perl/+bug/935525/+subscriptions
References