diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-08 09:01:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-08 09:01:41 +0000 |
commit | 71aad69bc784431f72b97cc60a2befdf9d768d7c (patch) | |
tree | db5c1b5091758fda219454f7eca1bfbf1d199a0f | |
parent | 0e88c1d7930b3771d4da953c68e84f7f8509c5ce (diff) | |
download | urpmi-71aad69bc784431f72b97cc60a2befdf9d768d7c.tar urpmi-71aad69bc784431f72b97cc60a2befdf9d768d7c.tar.gz urpmi-71aad69bc784431f72b97cc60a2befdf9d768d7c.tar.bz2 urpmi-71aad69bc784431f72b97cc60a2befdf9d768d7c.tar.xz urpmi-71aad69bc784431f72b97cc60a2befdf9d768d7c.zip |
- urpmi:
o handle README.urpmi in utf8 (but not other encodings) (#41553)
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | urpm/install.pm | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- urpmi: + o handle README.urpmi in utf8 (but not other encodings) (#41553) - urpmq: o --suggests now displays the suggested packages, see --allow-suggests for previous behaviour (#39726) diff --git a/urpm/install.pm b/urpm/install.pm index d56cb8ab..bd986156 100644 --- a/urpm/install.pm +++ b/urpm/install.pm @@ -272,7 +272,7 @@ sub install { if ($options{verbose} >= 0) { foreach (keys %{$urpm->{readmes}}) { print "-" x 70, "\n", N("More information on package %s", $urpm->{readmes}{$_}), "\n"; - print cat_(($urpm->{root} || '') . $_); + print cat_utf8(($urpm->{root} || '') . $_); print "-" x 70, "\n"; } } |