summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2007-07-12 10:17:18 +0000
committerNorbert Preining <preining@logic.at>2007-07-12 10:17:18 +0000
commit48e243d72710f0945ec3ac1cf1df148d96a4de0a (patch)
tree8a57ee5e7ffec5b6eca386937d9b6ec1c0232ddf /Master/tlpkg/TeXLive
parentc6a9654f2c88995ca6b27d5f8bacc7ac62e9d268 (diff)
small fix in TLPOBJ.pm (uninitialized value), and add (temporarly) a
texlive.tlpdb including the ctan stuff git-svn-id: svn://tug.org/texlive/trunk@4570 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r--Master/tlpkg/TeXLive/TLPOBJ.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm
index 425bdcd480f..a03c9f47f7f 100644
--- a/Master/tlpkg/TeXLive/TLPOBJ.pm
+++ b/Master/tlpkg/TeXLive/TLPOBJ.pm
@@ -512,7 +512,7 @@ sub update_from_catalogue {
# remove the ctan: prefix
$tcdocfilebasename =~ s/^ctan://;
# remove the ctan path if present
- my $tcctanpath = $entry->ctan;
+ my $tcctanpath = $entry->ctan ? $entry->ctan : "";
$tcdocfilebasename =~ s/^$tcctanpath//;
foreach my $tlpdocfile (@tlpdocfiles) {
if ($tlpdocfile =~ m/$tcdocfilebasename$/) {