summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-09-14 01:56:02 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-09-14 01:56:02 +0000
commit742223d1775b04904c9571e442fba79d5c992404 (patch)
tree2390057766f883de52366a48ce17bec7fa922660 /urpm.pm
parent3eb87f54eb456ac7ae2625907cd13dedb152930d (diff)
downloadurpmi-742223d1775b04904c9571e442fba79d5c992404.tar
urpmi-742223d1775b04904c9571e442fba79d5c992404.tar.gz
urpmi-742223d1775b04904c9571e442fba79d5c992404.tar.bz2
urpmi-742223d1775b04904c9571e442fba79d5c992404.tar.xz
urpmi-742223d1775b04904c9571e442fba79d5c992404.zip
Don't print the urpmf results twice when using virtual media with hdlists.
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/urpm.pm b/urpm.pm
index 332b0c86..b7090278 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -491,13 +491,13 @@ sub configure {
"$path/$_->{with_hdlist}", callback => $options{callback});
} else {
$urpm->{log}(N("examining hdlist file [%s]", "$path/$_->{with_hdlist}"));
+ #- we'll need a second pass
+ defined $second_pass or $second_pass = 1;
($_->{start}, $_->{end}) = $urpm->parse_hdlist(
"$path/$_->{with_hdlist}",
packing => 1,
- callback => $options{callback},
+ callback => $options{call_back_only_once} && $second_pass ? undef : $options{callback},
);
- #- we need a second pass now.
- defined $second_pass or $second_pass = 1;
}
} else {
$urpm->{error}(N("virtual medium \"%s\" is not local, medium ignored", $_->{name}));