summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-01-06 17:04:10 +0000
committerNorbert Preining <preining@logic.at>2008-01-06 17:04:10 +0000
commit819c5a72a84a5aa7b326d90da50d08e3c4adb926 (patch)
tree2703674b39e12cebd7a6493d22fb061211643f00
parente958587a87199d87e612f7fa7983e95e72ef9c8e (diff)
allow all 00texlive.\.? package names
git-svn-id: svn://tug.org/texlive/trunk@6056 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 716b53b2287..8bc5f6f8d36 100644
--- a/Master/tlpkg/TeXLive/TLPSRC.pm
+++ b/Master/tlpkg/TeXLive/TLPSRC.pm
@@ -78,7 +78,7 @@ sub from_file
if ($line =~ /^ /) {
die "$srcfile: continuation line not allowed in tlpsrc: $line\n";
}
- if ($line =~ /^name\s*([-\w]+(\.win32)?|00texlive\.config)$/) {
+ if ($line =~ /^name\s*([-\w]+(\.win32)?|00texlive\..*)$/) {
$name = "$1";
$started && die("$srcfile: tlpsrc cannot have two name directives");
$started = 1;