From 308ce1b7676b1a0e07a26327485fdc7892156fad Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sat, 15 Dec 2012 02:04:03 +0000 Subject: (install) do not show empty information from README* with --justdb --- NEWS | 3 +++ urpm/install.pm | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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}{$_})); -- cgit v1.2.1