summaryrefslogtreecommitdiffstats
path: root/urpme
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-11-17 10:51:35 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-11-17 10:51:35 +0000
commit839e03c164ca97b815877e2eaad9d8abee8e8b45 (patch)
tree877eadf444d24cd6c1aad9464a11fe4b69d7cdfb /urpme
parent272dd51827204fc87ae1d68bcde12694637eedf2 (diff)
downloadurpmi-839e03c164ca97b815877e2eaad9d8abee8e8b45.tar
urpmi-839e03c164ca97b815877e2eaad9d8abee8e8b45.tar.gz
urpmi-839e03c164ca97b815877e2eaad9d8abee8e8b45.tar.bz2
urpmi-839e03c164ca97b815877e2eaad9d8abee8e8b45.tar.xz
urpmi-839e03c164ca97b815877e2eaad9d8abee8e8b45.zip
Add more notes about messages parsed by urpm::parallel_*
Diffstat (limited to 'urpme')
-rw-r--r--urpme4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpme b/urpme
index ba664284..f68d2854 100644
--- a/urpme
+++ b/urpme
@@ -86,13 +86,13 @@ my @toremove = $urpm->find_packages_to_remove(
force => $force,
callback_notfound => sub {
my $urpm = shift @_;
- #- Warning : the following message is parsed in urpm::parallel_ka_run
+ #- Warning : the following message is parsed in urpm::parallel_*
$urpm->{fatal}(1, (@_ > 1 ? N("unknown packages") : N("unknown package")) .
': ' . join(', ', @_)); 0 },
callback_fuzzy => sub {
my $urpm = shift @_;
my $match = shift @_;
- #- Warning : the following message is parsed in urpm::parallel_ka_run
+ #- Warning : the following message is parsed in urpm::parallel_*
$urpm->{fatal}(1, N("The following packages contain %s: %s",
$match, join(' ', @_))); 0 },
callback_base => sub {