diff options
author | Norbert Preining <preining@logic.at> | 2007-11-22 17:22:42 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2007-11-22 17:22:42 +0000 |
commit | d2039916417b7af9fa528669815b060cb5a36c99 (patch) | |
tree | 817b6611c647bee802ee2db24788385ba1906437 /Master | |
parent | 9a38fd7856f605d3c7dbe56edafef157ff94faad (diff) |
small fix to TLPOBJ hash init
git-svn-id: svn://tug.org/texlive/trunk@5550 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPOBJ.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm index 10bbab8751d..b374040ad0e 100644 --- a/Master/tlpkg/TeXLive/TLPOBJ.pm +++ b/Master/tlpkg/TeXLive/TLPOBJ.pm @@ -493,7 +493,7 @@ sub make_container { my @files = (); my $compresscmd; my $tlpobjdir = "$InfraLocation/tlpobj"; - my %binf = $self->{'binfiles'}; + my %binf = %{$self->{'binfiles'}}; foreach (keys %binf) { push @files, @{$binf{$_}}; } |