summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--urpm/install.pm2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index d8534b5e..30640393 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- library:
+ o do not show empty information from README* with --justdb
+
Version 7.14 - 13 December 2012, by Thierry Vignaud
- library:
diff --git a/urpm/install.pm b/urpm/install.pm
index fde09cdb..b7fd6dd9 100644
--- a/urpm/install.pm
+++ b/urpm/install.pm
@@ -348,7 +348,7 @@ sub install {
}
}
- if ($options{verbose} >= 0) {
+ if ($options{verbose} >= 0 && !$options{justdb}) {
foreach (keys %{$urpm->{readmes}}) {
$urpm->{print}("-" x 70 . "\n" .
N("More information on package %s", $urpm->{readmes}{$_}));