summaryrefslogtreecommitdiff
path: root/Master/tlpkg/libexec/ctan2tds
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds9
1 files changed, 6 insertions, 3 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index 13a2e2210a3..ae7019784b8 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -33,6 +33,7 @@ $CP = "cp -pv";
$RM = "rm -vf"; # -v to get feedback via GNU rm on removals
$MAKEINFO = "makeinfo";
$INSTALL = "install -D -m 664";
+$RMDIR_EMPTY = "find -type d -empty -delete -print"; # GNU find for simplicity
$| = 1;
select ((select (STDERR), $| = 1)[0]);
@@ -640,6 +641,7 @@ chomp (my $ctan_root = `tlpkginfo --ctan-root`);
'hvfloat', "&MAKEflatten",
'hvindex', "&MAKEflatten",
'hvlogos', "&MAKEflatten",
+ 'hvpygmentex', "&MAKEflatten",
'hvqrurl', "&MAKEflatten",
'hybrid-latex', "die 'skipping, no self-locating of Python modules'",
'hyph-utf8', "&MAKEcopy",
@@ -4807,7 +4809,7 @@ sub flatten_dirtree {
&SYSTEM ("yes n | find . -mindepth 2 -not -type d -exec mv -i '\{\}' . \\;");
# remove newly empty directories.
- &SYSTEM ("find -depth -type d -print | xargs rmdir 2>/dev/null");
+ &SYSTEM ($RMDIR_EMPTY);
}
sub MAKEunzipandflatten {
@@ -5240,7 +5242,7 @@ sub MAKEmv_doctex {
&SYSTEM ("$MV doc/* .");
#
# remove newly empty directories.
- &SYSTEM ("find -depth -type d -print | xargs rmdir 2>/dev/null");
+ &SYSTEM ($RMDIR_EMPTY);
}
sub MAKEtamethebeast {
@@ -5529,7 +5531,7 @@ sub MAKEtkz {
&SYSTEM ("$MV doc/latex/* doc/* latex/* .");
#
# remove newly empty directories.
- &SYSTEM ("find -depth -type d -print | xargs rmdir 2>/dev/null");
+ &SYSTEM ($RMDIR_EMPTY);
}
# wadalab provides nearly TDS-ready .tar.gz with additional stuff
@@ -7187,6 +7189,7 @@ sub POSTstex {
print "POST$package - doc files up a level\n";
&xsystem ("$MV Makefile Makefile.top");
&xsystem ("$MV */* .");
+ &SYSTEM ($RMDIR_EMPTY);
}
sub POSTtex_ps {