summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-07-08 09:01:41 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-07-08 09:01:41 +0000
commit71aad69bc784431f72b97cc60a2befdf9d768d7c (patch)
treedb5c1b5091758fda219454f7eca1bfbf1d199a0f
parent0e88c1d7930b3771d4da953c68e84f7f8509c5ce (diff)
downloadurpmi-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--NEWS2
-rw-r--r--urpm/install.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 1a6a857e..0c6d9eda 100644
--- a/NEWS
+++ b/NEWS
@@ -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";
}
}