diff options
author | Norbert Preining <preining@logic.at> | 2007-07-12 10:17:18 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2007-07-12 10:17:18 +0000 |
commit | 48e243d72710f0945ec3ac1cf1df148d96a4de0a (patch) | |
tree | 8a57ee5e7ffec5b6eca386937d9b6ec1c0232ddf /Master/tlpkg/TeXLive | |
parent | c6a9654f2c88995ca6b27d5f8bacc7ac62e9d268 (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.pm | 2 |
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$/) { |