From 94bd3c1fa87ee56740b1cfa60224ed1525145ec3 Mon Sep 17 00:00:00 2001 From: Rafael Garcia-Suarez Date: Thu, 17 Nov 2005 11:04:17 +0000 Subject: Fix stealth context --- urpm/parallel_ka_run.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'urpm') diff --git a/urpm/parallel_ka_run.pm b/urpm/parallel_ka_run.pm index c9141b18..e108e863 100644 --- a/urpm/parallel_ka_run.pm +++ b/urpm/parallel_ka_run.pm @@ -7,11 +7,11 @@ our $mput_command = $ENV{URPMI_MPUT_COMMAND}; our $rshp_command = $ENV{URPMI_RSHP_COMMAND}; if (!$mput_command) { - $mput_command = grep -x, qw(/usr/bin/mput2 /usr/bin/mput); + ($mput_command) = grep -x, qw(/usr/bin/mput2 /usr/bin/mput); } $mput_command = 'mput' unless $mput_command; if (!$rshp_command) { - $rshp_command = grep -x, qw(/usr/bin/rshp2 /usr/bin/rshp); + ($rshp_command) = grep -x, qw(/usr/bin/rshp2 /usr/bin/rshp); } $rshp_command = 'rshp' unless $rshp_command; -- cgit v1.2.1