diff options
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index eaac3aded86..164291e4655 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -1264,7 +1264,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`); 'tkz-graph', "die 'skipping, obsolete on ctan'", #"&MAKEtkz", 'tkz-kiviat', "die 'skipping, obsolete on ctan'", #"&MAKEtkz", 'tkz-linknodes',"die 'skipping, obsolete on ctan'",#"&MAKEtkz", - 'tkz-tab', "die 'skipping, obsolete on ctan'", #"&MAKEtkz", + 'tkz-tab', "&MAKEtkz", 'tlaunch', "die 'skipping, siep installs by hand'", 'tlg2latex', "die 'skipping, not self-locating for default.py?'", 'tolkienfonts',"die 'skipping, cannot easily separate free from nonfree fonts'", @@ -2857,7 +2857,6 @@ $standardinsrunner="latex -interaction=nonstopmode"; 'pst-eucl-translation-bg' => 'NULL', # doc 'seuthesis' => 'NULL', # doc 'tipfr' => 'NULL', # doc - 'tkz-tab' => 'NULL', # doc 'ticollege' => 'NULL', # doc 'turnthepage' => 'NULL', # doc 'voss-mathmode' => 'NULL', # doc @@ -5165,14 +5164,14 @@ sub MAKEt2 { } sub MAKEtkz { - # move files in latex to runtime, and doc/* up a level. + # move files in latex to runtime, and doc/* or latex/* or both up a level. &donormal (); # my $texdest = "$DEST/tex/$whichformat/$package"; &xmkdir ($texdest); &SYSTEM ("$MV `find latex -type f` $texdest/"); &SYSTEM ("$RM -r latex"); # rm now-empty dir - &SYSTEM ("$MV doc/* ."); + &SYSTEM ("$MV doc/latex/* doc/* latex/* ."); # # remove newly empty directories. &SYSTEM ("find -depth -type d -print | xargs rmdir 2>/dev/null"); |