diff options
Diffstat (limited to 'Master')
-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$/) { |