diff options
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index b0be5186752..e5771f5862c 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -514,6 +514,7 @@ chdir $startdir || die "chdir($startdir) failed: $!"; # back to raw %specialpostaction = ( 'bibleref' => '&POSTlatex2html', 'context-lilypond' => '&POSTcontext_lilypond', + 'coordsys' => '&POSTcoordsys', 'datetime' => '&POSTlatex2html', 'doipubmed' => '&POSTlatex2html', 'elsarticle' => '&POSTelsarticle', @@ -3416,6 +3417,14 @@ sub PREHOOK_wsuipa +sub POSTcoordsys +{ + print "POST$package - rename `putfile.' to `putfile.maple'.\n"; + # Apparently dtx insists on always adding the period; this can make + # vfat filesystems choke. + &SYSTEM ("$MV putfile. putfile.maple"); +} + sub POSTcontext_lilypond { print "POST$package - creating package-level sunbdirectories\n"; mkdir ("$DEST/doc/context/third/lilypond"); |