diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 1ef9a246da5..8781ab3b94e 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -510,12 +510,12 @@ chomp ($Build = `cd $Master/../Build/source && pwd`); 'lshort-zh-cn', "die 'skipping, use lshort-chinese'", 'ltablex', "die 'skipping, unknown license'", 'ltnews', "die 'skipping, nonfree doc'", - 'ltt', "&MAKEltt", - 'ltxfileinfo', "die 'skipping, Ruby, not self-locating'", - 'ltxmisc', "die 'skipping, too complicated, sorry'", - 'ltxtable', "die 'skipping, use carlisle'", + 'ltt', "&MAKEltt", + 'ltxfileinfo', "die 'skipping, Ruby, not self-locating'", + 'ltxmisc', "die 'skipping, too complicated, sorry'", + 'ltxtable', "die 'skipping, use carlisle'", 'lua-visual-debug', "&MAKEflatten", - 'luapersian', "&MAKEflatten", + 'luapersian', "&MAKEflatten", 'lucida', "die 'skipping, nonfree font'", 'lucidabr', "die 'skipping, nonfree font'", 'lxfonts', "&MAKEcopy", @@ -2230,6 +2230,7 @@ $standardclean = '\.head|\.tmp|\.dvi|\.log|\.out|\.aux|\.toc|\.lof|\.lot' 'gfsneohellenic'=> 'N*Specimen.pdf', # no source 'jknapltx' => 'ubbold.fd', # clash bbold's Ubbold.fd; sauter bbold fails 'linguex' => 'cgloss4e.sty', # symlink + 'marvosym' => 'doc/fonts/marvosym/marvosym.pdf', # no source 'numericplots' => '.*\.m', # matlab 'parnotes' => 'PNmanual.pdf', # no source 'piechartmp' => 'piechartmp.pdf', # no source @@ -2295,11 +2296,11 @@ for (@ARGV) { if (exists $special{$package}) { if ($special{$package} =~ s/^die //) { # avoid repeating the die message. - die "$package failed: $special{$package}\n"; + die "*** $package failed: $special{$package}\n"; } else { print "special: $special{$package}...\n"; eval $special{$package}; - die "$package failed in $special{$package}:\n $@" if $@; + die "*** $package failed in $special{$package}:\n $@" if $@; } } else { &donormal; @@ -2986,14 +2987,14 @@ sub runjob return $status; } -# remove all files matching something in $KILLPATT. -# also remove .ps files for which we have a .pdf. +# Remove all files matching something in $KILLPATT. +# Also remove .ps files for which we have a .pdf. +# # if MORE is true, remove additional files matching something in # $moreclean and create a README.TEXLIVE which lists the removed files. -# -# As a kludge created for rangen, if KILLPATT starts with a directory -# path (e.g., doc/), we cd to that directory before globbing (and cd -# back at the end). +# As a kludge created for rangen (now used for marvosym), if KILLPATT +# starts with a directory path (e.g., doc/), we cd to that directory +# before globbing (and cd back at the end). # # (Switching all the kill patterns to globs, so we could just use the # glob function, seemed too ugly. And removing the file in a posthook |