diff options
-rw-r--r-- | urpm/parallel_ka_run.pm | 4 |
1 files changed, 2 insertions, 2 deletions
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; |