diff options
author | Karl Berry <karl@freefriends.org> | 2018-12-17 18:48:58 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-12-17 18:48:58 +0000 |
commit | 0f86cc4c786ef6cbe3fd07125fe05ef22edaf9eb (patch) | |
tree | 135fdaec1541abaeb18601141396c9c375a60eec /Master/tlpkg | |
parent | 20a403c668123fd040d0a4c3564529faea2f0cd6 (diff) |
(from_file): reenable check for second shortdesc
line, since hyphen-latin was fixed.
git-svn-id: svn://tug.org/texlive/trunk@49434 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPSRC.pm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Master/tlpkg/TeXLive/TLPSRC.pm b/Master/tlpkg/TeXLive/TLPSRC.pm index b348984fcfd..985abbb73ef 100644 --- a/Master/tlpkg/TeXLive/TLPSRC.pm +++ b/Master/tlpkg/TeXLive/TLPSRC.pm @@ -144,11 +144,9 @@ sub from_file { $category = $1; } elsif ($line =~ /^shortdesc\s*(.*)$/) { - # although we would like to do this, hyphen-latin.tlpsrc contains - # multiple short/longdesc, entries. Not worth following up. - # $shortdesc - # && die "$srcfile:$lineno: second shortdesc not allowed: $line" - # . "(have $shortdesc)\n"; + $shortdesc + && die "$srcfile:$lineno: second shortdesc not allowed: $line" + . "(have $shortdesc)\n"; $shortdesc = $1; } elsif ($line =~ /^shortdesc$/) { |