diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-10 09:17:12 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-10 09:17:12 +0000 |
commit | e17a9420d4a2a9e6efefbc1bba998941ae08eb05 (patch) | |
tree | 7f193f2a93835fa7e859d4d573518eed3927bd56 /urpm/parallel_ka_run.pm | |
parent | 24c2b03f3fe393b031933760cc072b8132cfdfab (diff) | |
download | urpmi-e17a9420d4a2a9e6efefbc1bba998941ae08eb05.tar urpmi-e17a9420d4a2a9e6efefbc1bba998941ae08eb05.tar.gz urpmi-e17a9420d4a2a9e6efefbc1bba998941ae08eb05.tar.bz2 urpmi-e17a9420d4a2a9e6efefbc1bba998941ae08eb05.tar.xz urpmi-e17a9420d4a2a9e6efefbc1bba998941ae08eb05.zip |
rename var
Diffstat (limited to 'urpm/parallel_ka_run.pm')
-rw-r--r-- | urpm/parallel_ka_run.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/urpm/parallel_ka_run.pm b/urpm/parallel_ka_run.pm index d8818d62..d8987f5b 100644 --- a/urpm/parallel_ka_run.pm +++ b/urpm/parallel_ka_run.pm @@ -83,9 +83,9 @@ sub parallel_find_remove { #- now try an iteration of urpme. $parallel->urpm_popen($urpm, 'urpme', "--auto $test" . join(' ', map { "'$_'" } @$l) . ' 2>&1', sub { - my ($node, $s_) = @_; + my ($node, $s) = @_; - urpm::parallel::parse_urpme_output($urpm, $state, $node, $s_, + urpm::parallel::parse_urpme_output($urpm, $state, $node, $s, \%notfound, \%base_to_remove, \%bad_nodes, %options); }); @@ -129,8 +129,8 @@ sub parallel_resolve_dependencies { delete $state->{selected}; #- now try an iteration of urpmq. $parallel->urpm_popen($urpm, 'urpmq', "--synthesis $synthesis -fduc $line " . join(' ', keys %chosen), sub { - my ($node, $s_) = @_; - urpm::parallel::parse_urpmq_output($urpm, $state, $node, $s_, \$cont, \%chosen, %options); + my ($node, $s) = @_; + urpm::parallel::parse_urpmq_output($urpm, $state, $node, $s, \$cont, \%chosen, %options); }); #- check for internal error of resolution. $cont == 1 and die "internal distant urpmq error on choice not taken"; |