summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2006-11-10 12:50:29 +0000
committerPascal Rigaux <pixel@mandriva.com>2006-11-10 12:50:29 +0000
commitd80aa20997aea02ccd576b1d7173772539c7d3af (patch)
tree84f828af490859be3679351185a5bff2cc3c4052 /urpm.pm
parentddcac76b282e6da45f5905e7c8102ab259e27d44 (diff)
downloadurpmi-d80aa20997aea02ccd576b1d7173772539c7d3af.tar
urpmi-d80aa20997aea02ccd576b1d7173772539c7d3af.tar.gz
urpmi-d80aa20997aea02ccd576b1d7173772539c7d3af.tar.bz2
urpmi-d80aa20997aea02ccd576b1d7173772539c7d3af.tar.xz
urpmi-d80aa20997aea02ccd576b1d7173772539c7d3af.zip
fix a comment, and add comment on a bug
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/urpm.pm b/urpm.pm
index f07d4e4a..fb78e631 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -3083,7 +3083,10 @@ sub install {
close $ERROR_OUTPUT;
#- keep safe exit now (with destructor call).
exit 0;
- } else { #- parent process
+ } else {
+ #- when non-forking
+ # !!! BUG: this part of the code is not called when forking !!!
+ # !!! BUG: when forking %readmes is empty, since the child is not passing this information to its parent !!!
if ($::verbose >= 0 && keys %readmes) {
foreach (keys %readmes) {
print "-" x 70, "\n", N("More information on package %s", $readmes{$_}), "\n";