diff options
author | Norbert Preining <preining@logic.at> | 2009-06-05 08:24:46 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-06-05 08:24:46 +0000 |
commit | 7a9225b12152438b0601bf60364689bb6b5da624 (patch) | |
tree | 70dc78e3f413354515c8163f2dd8832596d924aa /Master/tlpkg | |
parent | eb60b64d1e8fb6f9d9eceafcfa994d621e69ca43 (diff) |
fix size computations when installing from svn checkout
git-svn-id: svn://tug.org/texlive/trunk@13630 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPDB.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Master/tlpkg/TeXLive/TLPDB.pm b/Master/tlpkg/TeXLive/TLPDB.pm index 5614ff06d64..9e245dcf71b 100644 --- a/Master/tlpkg/TeXLive/TLPDB.pm +++ b/Master/tlpkg/TeXLive/TLPDB.pm @@ -1082,6 +1082,7 @@ sub sizes_of_packages { } else { # we have to add the respective sizes, that is checking for # installation of src and doc file + $tlpsizes{$p} = $tlpobjs{$p}->runsize; $tlpsizes{$p} += $tlpobjs{$p}->srcsize if $opt_src; $tlpsizes{$p} += $tlpobjs{$p}->docsize if $opt_doc; my %foo = %{$tlpobjs{$p}->binsize}; |