diff options
author | Karl Berry <karl@freefriends.org> | 2011-03-25 15:46:57 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2011-03-25 15:46:57 +0000 |
commit | de8b569a26cb4822b116007efe264c40284a9b52 (patch) | |
tree | a86aa3f02489f0e1963d8e9765daa66ad4663c67 /Master/tlpkg/libexec | |
parent | fe16b0995df1009865e7ba1d003342491ca50294 (diff) |
latexmk in Build
git-svn-id: svn://tug.org/texlive/trunk@21826 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/libexec')
-rwxr-xr-x | Master/tlpkg/libexec/ctan2tds | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds index eca57500ef9..a2e1920f64a 100755 --- a/Master/tlpkg/libexec/ctan2tds +++ b/Master/tlpkg/libexec/ctan2tds @@ -2020,7 +2020,7 @@ for (@ARGV) { $package = pop (@x); my $COOKED_PKG = "$COOKED_TOP/$package"; # output directory - if ($package =~ /^(biber|texdef)$/) { # later anything with scripts + if ($package =~ /^(biber|texdef|latexmk)$/) { # later anything with scripts $BUILDDEST = "$COOKED_PKG/Build/source"; $TOPDEST = "$COOKED_PKG/Master"; } else { @@ -2498,7 +2498,7 @@ sub doscripts { &install ("$DEST/scripts/$package", $scriptpatt); &SYSTEM ("chmod a+x $DEST/scripts/$package/*"); - return unless $package eq "texdef"; # xx just testing this one for now + return unless $package =~ /^(texdef|latexmk)$/; # xx testing for now # update the copy in Build, too. my $build_tldir = "texk/texlive"; my $build_scriptsdir = "$build_tldir/linked_scripts"; @@ -2522,7 +2522,6 @@ sub doscripts { } (my $linkname = $s) =~ s/\..*$//; - next if -e "$Master/bin/i386-linux/$linkname"; # already there, move on for my $p (@platforms) { my $platdir = "$TOPDEST/bin/$p"; &xmkdir ($platdir); |