summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-11-28 19:33:00 +0000
committerKarl Berry <karl@freefriends.org>2008-11-28 19:33:00 +0000
commit37b115bf1acae80db5c25272a50debcca5fe1211 (patch)
treeec3282a9a40570a3ccd058eb910be62c39691587
parent71071d64c2e8de7266bed71fd6c2a034fdfd1d94 (diff)
(install_packages): we're measuring k, not b.
git-svn-id: svn://tug.org/texlive/trunk@11460 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm7
1 files changed, 2 insertions, 5 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index da113852cb2..061bb495a0e 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -855,12 +855,9 @@ sub install_packages {
$tottime = sprintf("%02d:$tottime", $thour);
}
}
- # here we could add more information, eg about timing and number
- # of bytes etc etc.
- # the size of the containers is present
my $infostr = sprintf("Installing [%0${td}d/$totalnr, "
- . "time/total: $remtime/$tottime]: $package [%db]",
- $n, int($tlpsizes{$package}/1024));
+ . "time/total: $remtime/$tottime]: $package [%dk]",
+ $n, int($tlpsizes{$package}/1024) + 1);
info("$infostr\n");
foreach my $h (@::install_packages_hook) {
&$h($n,$totalnr);