From bb32bd9c55eec538622b8ce085b95b5772c48930 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 1 Sep 2003 16:53:53 +0000 Subject: don't warn when killing /usr/lib/gconfd-2 when runs in background --- perl-install/pkgs.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 5c168f345..529fdd37e 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -1078,8 +1078,8 @@ sub install($$$;$$) { if (@killpid) { foreach (@killpid) { - my $s = "$_: " . join(' ', split("\0", cat_("/proc/$_/cmdline"))); - log::l("ERROR: DrakX should not have to clean the packages shit. Killing $s."); + my ($prog, @para) = split("\0", cat_("/proc/$_/cmdline")); + log::l("ERROR: DrakX should not have to clean the packages shit. Killing $_: " . join(' ', $prog, @para) . "."); } kill 15, @killpid; sleep 2; -- cgit v1.2.1