diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-11-17 11:04:17 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-11-17 11:04:17 +0000 |
commit | 94bd3c1fa87ee56740b1cfa60224ed1525145ec3 (patch) | |
tree | 5ca3f74459c2be8d046f92ec5adefa959e45192b /urpm/parallel_ka_run.pm | |
parent | a5ffe685404b8c691d9a958233c99c5d7b21d11c (diff) | |
download | urpmi-94bd3c1fa87ee56740b1cfa60224ed1525145ec3.tar urpmi-94bd3c1fa87ee56740b1cfa60224ed1525145ec3.tar.gz urpmi-94bd3c1fa87ee56740b1cfa60224ed1525145ec3.tar.bz2 urpmi-94bd3c1fa87ee56740b1cfa60224ed1525145ec3.tar.xz urpmi-94bd3c1fa87ee56740b1cfa60224ed1525145ec3.zip |
Fix stealth context
Diffstat (limited to 'urpm/parallel_ka_run.pm')
-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; |