diff options
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index ceb30f2eda2..75469de3096 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -5244,12 +5244,10 @@ sub POSTcoordsys { sub POST_cstexpkgs { print "POST_cstexpkgs (for $package) - untar\n"; - # used for csplain, cslatex, cs(psfonts). - # the Catalogue and tar file name is cspsfonts, but the directory - # name inside is cs; we stay with cs since that has been the name in TL. - my $tarfile = -r "$package.tar.gz" ? "$package.tar.gz" : "cspsfonts.tar.gz"; + # used for csplain and cslatex + my $tarfile = -r "$package.tar.gz" ? "$package.tar.gz" : "somethingwrong"; my $untar = "tar -C $DEST --strip-components=1 -x -f $tarfile"; - $untar .= " --exclude=texmf/doc/cstex"; # handled in its own package + $untar .= " --exclude=texmf/doc/cstex"; # handled in its own package $untar .= " --exclude=texmf/tex/generic/enctex"; # must do by hand &SYSTEM ($untar); &SYSTEM ("$RM $tarfile"); @@ -5264,6 +5262,8 @@ sub POSTcs { # The cs package is where we have the cstex fonts, in both mf and # type1 formats (plus tfm, vf, etc.). This comes from multiple # tarballs in the cstex distribution area. + # the Catalogue and tar file name is cspsfonts, but the directory + # name inside is cs; we stay with cs since that has been the name in TL. # for my $tarbase ("csfonts-t1", "csfonts", "cspsfonts") { my $tarfile = "$tarbase.tar.gz"; |