summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2021-03-17 01:25:11 +0000
committerNorbert Preining <preining@logic.at>2021-03-17 01:25:11 +0000
commit8fe9ec34f8629d1812eec0bb4fa937d390530b88 (patch)
treeb2af6bbb6d396d3fa7a05ebd8cf9724e7dd1c994
parentad387032310ef075f28ca0f0b52e699721a5423d (diff)
fix catalogue data reading in tlpsrc
git-svn-id: svn://tug.org/texlive/branches/branch2020.0@58462 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/tlpkg/TeXLive/TLPSRC.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPSRC.pm b/Master/tlpkg/TeXLive/TLPSRC.pm
index c3a731fe84b..84c0a9830e5 100644
--- a/Master/tlpkg/TeXLive/TLPSRC.pm
+++ b/Master/tlpkg/TeXLive/TLPSRC.pm
@@ -222,7 +222,7 @@ sub from_file {
} elsif ($line =~ /^tlpsetvar\s+([-_a-zA-Z0-9]+)\s+(.*)$/) {
$tlpvars{$1} = $2;
- } elsif ($line =~ /^catalogue-(.+)\s*(.*)$/o) {
+ } elsif ($line =~ /^catalogue-([^\s]+)\s+(.*)$/o) {
$self->{'cataloguedata'}{$1} = $2 if defined $2;
} else {