diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/pkgs.pm | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 17fc64d56..1d916f5bb 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - fix parsing dmidecode output (broken since we use dmidecode-2.10, aka since November 24 2008) +- prevent urpmi messages from garbaging text installer (#50776) - locales o add "English (South Africa)" (#51057) o fix sorting South Africa languages (#51055) diff --git a/perl-install/install/pkgs.pm b/perl-install/install/pkgs.pm index 4d72a761e..39dc0cc7c 100644 --- a/perl-install/install/pkgs.pm +++ b/perl-install/install/pkgs.pm @@ -684,6 +684,10 @@ sub install { URPM::add_macro(join(' ', '__dbi_cdb', URPM::expand('%__dbi_cdb'), 'nofsync')); my $LOG = _openInstallLog(); + $packages->{log} = $packages->{info} = $packages->{print} = sub { + print $LOG "$_[0]\n"; + }; + #- do not modify/translate the message used with installCallback since #- these are keys during progressing installation, or change in other #- place (install::steps_gtk.pm,...). |