diff options
author | Norbert Preining <preining@logic.at> | 2008-06-04 06:05:06 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-06-04 06:05:06 +0000 |
commit | 76f0f085bc2a370916870827759b2a00aa81f43f (patch) | |
tree | a07cf4727774b3ce5c81c02babf23296f0d31e39 /Master | |
parent | c7946d2977728c203ab3ebf0970ad334bba995b0 (diff) |
accept texlive.* package names
git-svn-id: svn://tug.org/texlive/trunk@8537 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPSRC.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPSRC.pm b/Master/tlpkg/TeXLive/TLPSRC.pm index 28dedc2fef5..1faf0fc8ed1 100644 --- a/Master/tlpkg/TeXLive/TLPSRC.pm +++ b/Master/tlpkg/TeXLive/TLPSRC.pm @@ -82,7 +82,7 @@ sub from_file if ($line =~ /^ /) { die "$srcfile: continuation line not allowed in tlpsrc: $line\n"; } - if ($line =~ /^name\s*([-\w]+(\.win32)?|00texlive.*|0texlive.*)$/) { + if ($line =~ /^name\s*([-\w]+(\.win32)?|00texlive.*|0texlive.*|texlive\..*)$/) { $name = "$1"; $started && die("$srcfile: tlpsrc cannot have two name directives"); $started = 1; |