diff options
author | Karl Berry <karl@freefriends.org> | 2010-12-16 00:40:37 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-12-16 00:40:37 +0000 |
commit | b1a0ec9a20f7a18ee9175b469d4bea50bc49f251 (patch) | |
tree | b292768fd246d0494d99d9d571376c97a0c9c4bc /Master/tlpkg/libexec | |
parent | 44de191bb38072e859104b33f60791203b9b7d89 (diff) |
lshort-english 5.00 (15dec10)
git-svn-id: svn://tug.org/texlive/trunk@20755 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 41e803ae622..8068cf93357 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -3302,8 +3302,10 @@ sub MAKElshort my $destdir = "$DEST/doc/latex/$package"; &SYSTEM ("mkdir -p $destdir"); &SYSTEM ("$CP -r $packagedir/* $destdir"); - # keep only pdf's to save space. - &SYSTEM ("cd $destdir && $RM lshort*.ps *lshort*.ps.*z* lshort*.dvi* lshort-*-book.zip"); + # keep only the main pdf to save space. + &SYSTEM ("cd $destdir && $RM lshort*.ps *lshort*.ps.*z* lshort*.dvi"); + &SYSTEM ("cd $destdir && $RM lshort*-a5.pdf lshort*-letter.pdf"); + &SYSTEM ("cd $destdir && $RM lshort-*-book.zip"); # remove symlinks such as README. &SYSTEM ("cd $destdir && find -type l | xargs --no-run-if-empty rm"); } |