diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | urpme | 5 |
2 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,8 @@ - urpme, urpmi: o add basesystem-minimal to prohibit-remove +- urpme: + o enhance pkg list formatting for "The following packages contain %s: %s" + error message (#29178) Version 5.2 - 18 January 2008, by Pascal "Pixel" Rigaux @@ -102,9 +102,10 @@ my @toremove = urpm::select::find_packages_to_remove($urpm, callback_fuzzy => sub { my $urpm = shift @_; my $match = shift @_; + my $pkgs = $urpm::msg::no_translation ? join(' ', @_) : join('', map { "\n$_" } sort @_); #- Warning : the following message is parsed in urpm::parallel_* - $urpm->{fatal}(1, N("The following packages contain %s: %s", - $match, join(' ', @_))); 0 }, + $urpm->{fatal}(1, N("The following packages contain %s: %s", $match, $pkgs)); + 0 }, callback_base => sub { my $urpm = shift @_; foreach (@_) { |