diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-09-15 13:13:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-09-15 13:13:51 +0000 |
commit | 9195d8353a59ffe9b9e8fd63a5b751c418307710 (patch) | |
tree | 59c421962850b5468185f9b9b444e7470ba04e49 /perl-install/pkgs.pm | |
parent | 52844ed39b1d2e17b13f7206892a3c65de93cc2a (diff) | |
download | drakx-9195d8353a59ffe9b9e8fd63a5b751c418307710.tar drakx-9195d8353a59ffe9b9e8fd63a5b751c418307710.tar.gz drakx-9195d8353a59ffe9b9e8fd63a5b751c418307710.tar.bz2 drakx-9195d8353a59ffe9b9e8fd63a5b751c418307710.tar.xz drakx-9195d8353a59ffe9b9e8fd63a5b751c418307710.zip |
- call installCallback() on "open" too
- on "open" we are not chrooted
- setting advertising when chrooted could cause havoc
if pango wants to load a new font (eg: advertising #13 in pt_BR)
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 72d041a50..4af37f4d1 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -1148,6 +1148,7 @@ sub install { my $fd; #- since we return the "fileno", perl does not know we're still using it, and so closes it, and :-( my @probs = $trans->run($packages, force => 1, nosize => 1, callback_open => sub { my ($packages, $_type, $id) = @_; + &$callback; my $pkg = defined $id && $packages->{depslist}[$id]; my $medium = packageMedium($packages, $pkg); my $f = $pkg && $pkg->filename; @@ -1160,6 +1161,7 @@ sub install { $fd ? fileno $fd : -1; }, callback_close => sub { my ($packages, $_type, $id) = @_; + &$callback; my $pkg = defined $id && $packages->{depslist}[$id] or return; my $check_installed; $db->traverse_tag('name', [ $pkg->name ], sub { |