diff options
author | Karl Berry <karl@freefriends.org> | 2013-04-09 16:41:46 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2013-04-09 16:41:46 +0000 |
commit | 964fe8bfda14525be1aff1468c6a487a899b343b (patch) | |
tree | d0132e6e8e38e8ff7c49d1ebd553078e580e0793 /Master/tlpkg/libexec/ctan2tds | |
parent | 46a0dcf5450e9cad3f8fdcff9dd9d449b9db7325 (diff) |
splitindex (9apr13)
git-svn-id: svn://tug.org/texlive/trunk@29792 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec/ctan2tds')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index 82b02901e27..8f774093f2a 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -5435,11 +5435,11 @@ sub POST_do_man { warn ("$0: could not find man pages starting from " . `pwd`); } # - print "POST$package - mv *.1 man pages from $src_mandir\n"; - my $mydest = "$TOPDEST/texmf-dist/doc/man/man1/"; - &xmkdir ($mydest); + my $mandest = "$TOPDEST/texmf-dist/doc/man/man1"; + print "POST_do_man - mv *.1 man pages from $src_mandir to $mandest\n"; + &xmkdir ($mandest); &xchdir ($DEST); - &SYSTEM ("$MV $src_mandir/*.1 $mydest"); + &SYSTEM ("$MV $src_mandir/*.1 $mandest") unless $src_mandir eq $mandest; &tl_man_to_pdf (); } |