summaryrefslogtreecommitdiff
path: root/Master/tlpkg/libexec/ctan2tds
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds6
1 files changed, 5 insertions, 1 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index 8f4a948ab0e..72c9893a34e 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -924,6 +924,7 @@ $standarddest = "texmf-dist";
'iftex', 'generic',
'ifxetex', 'generic',
'jadetex', 'jadetex',
+ 'levy', 'generic', # one .sty, one .tex
'mathabx', 'generic',
'mathdots', 'generic',
'metatex', 'plain',
@@ -1073,6 +1074,7 @@ $standardtex='\.(.bx|cfg|sty|clo|ldf|cls|def|fd|cmap|4ht)$';
'latex4wp', 'NULL', # keep doc together
'lecturer', '(t-)?lecturer.(tex|sty)|ltr-',
'lettre', '\.ins|\.cls',
+ 'levy', 'greekmacros.tex|' . $standardtex,
'librarian', '(t-)?librarian.(tex|sty)',
'listings-ext','\.sty', # not .cfg
'logic', 'milstd\.tex|' . $standardtex,
@@ -2612,13 +2614,15 @@ sub runjob
my @output = (<TMP>);
if ($job =~ /^mktextfm/) {
print $output[$#output-1]; # successfully generated line
+ $status = 0; # do not worry if the bitmap failed, e.g., grtt10.mf.
} else {
print `cat $Jobid.log`;
}
close (TMP);
unlink ("$Jobid.log");
- die "goodbye, exit status $status for $job\n" if $status != 0;
+ die "goodbye, exit status $status for $job\n"
+ if $status != 0;
}
return $status;
}