diff options
author | Karl Berry <karl@freefriends.org> | 2013-09-15 19:53:48 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-09-15 19:53:48 +0000 |
commit | 3e4521f9064f28ee0ec226c6df4378c9551149ea (patch) | |
tree | dd274894c458b317f7aef7f681a573bc6e1493c7 /Master/tlpkg/TeXLive/TLPOBJ.pm | |
parent | ba51c019f0b1098d506774f77a6f32d8378c7888 (diff) |
(from_fh): warn instead of die if we cannot parse
the doc file attributes; hopefully it's not that important.
git-svn-id: svn://tug.org/texlive/trunk@31658 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLPOBJ.pm')
-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 e7d89909630..c01ceac2355 100644 --- a/Master/tlpkg/TeXLive/TLPOBJ.pm +++ b/Master/tlpkg/TeXLive/TLPOBJ.pm @@ -134,7 +134,7 @@ sub from_fh { $self->{'docfiledata'}{$f}{'details'} = $1; $self->{'docfiledata'}{$f}{'language'} = $2; } else { - die "Unparsable tagging in line: =$line="; + warn "Unparsable tagging in TLPDB line: =$line="; } } } elsif ($lastcmd eq "binfiles") { |