diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-09 21:54:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-09 21:54:55 +0000 |
commit | f23c72f2f22a4a6778498ed8bbeed1ac8776ff69 (patch) | |
tree | 3bea2f84df779b21c7c4ab68a92c2c1bb41db0df | |
parent | 7a6cff190ef4edc52107e435b122856713185861 (diff) | |
download | urpmi-f23c72f2f22a4a6778498ed8bbeed1ac8776ff69.tar urpmi-f23c72f2f22a4a6778498ed8bbeed1ac8776ff69.tar.gz urpmi-f23c72f2f22a4a6778498ed8bbeed1ac8776ff69.tar.bz2 urpmi-f23c72f2f22a4a6778498ed8bbeed1ac8776ff69.tar.xz urpmi-f23c72f2f22a4a6778498ed8bbeed1ac8776ff69.zip |
not needed anymore to read char by char
-rw-r--r-- | urpm/parallel_ssh.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/urpm/parallel_ssh.pm b/urpm/parallel_ssh.pm index c2d40786..1ad5c9b3 100644 --- a/urpm/parallel_ssh.pm +++ b/urpm/parallel_ssh.pm @@ -170,7 +170,6 @@ sub parallel_install { foreach my $node (keys %{$parallel->{nodes}}) { my $fh = _ssh_urpm($urpm, $node, 'urpmi', "--no-verify-rpm --auto " . _nolock($node) . "--synthesis $parallel->{synthesis} $line"); - local $/ = \1; while (my $s = <$fh>) { print $s; } |