summaryrefslogtreecommitdiffstats
path: root/urpm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm')
-rw-r--r--urpm/install.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/urpm/install.pm b/urpm/install.pm
index 9bf6c448..189e96f8 100644
--- a/urpm/install.pm
+++ b/urpm/install.pm
@@ -75,7 +75,9 @@ sub install_logger {
++$urpm->{logger_count} if $pname;
my $cnt = $pname ? $urpm->{logger_count} : '-';
$pname ||= N("[repackaging]");
- printf "%9s: %-22s", $cnt . "/" . $total_pkg, $pname;
+ my $s = sprintf("%9s: %-22s", $cnt . "/" . $total_pkg, $pname);
+ print $s;
+ $s =~ / $/ or printf "\n%9s %-22s", '', '';
}
} elsif ($subtype eq 'stop') {
if ($urpm->{logger_progress} < $progress_size) {