summaryrefslogtreecommitdiff
path: root/Master/tlpkg
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2011-08-11 17:37:45 +0000
committerKarl Berry <karl@freefriends.org>2011-08-11 17:37:45 +0000
commit76ef14b63cb828fe036a1a070fb7913567fa9fa8 (patch)
treebc2aeee5ee92e8a9f38fde060d821a42dac89055 /Master/tlpkg
parentdd4b21241ec85e0921346286fc24de51ec75a096 (diff)
pdfcrop 1.32 (10aug11)
git-svn-id: svn://tug.org/texlive/trunk@23499 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rwxr-xr-xMaster/tlpkg/libexec/ctan2tds4
1 files changed, 4 insertions, 0 deletions
diff --git a/Master/tlpkg/libexec/ctan2tds b/Master/tlpkg/libexec/ctan2tds
index 25518f5db05..2c823081c86 100755
--- a/Master/tlpkg/libexec/ctan2tds
+++ b/Master/tlpkg/libexec/ctan2tds
@@ -2631,11 +2631,15 @@ sub doscripts {
if ($p ne "win32") {
my $linktarget = "../../$DEST_TREE/scripts/$package/$s";
&SYSTEM ("ln -s $linktarget $platdir/$linkname");
+ &SYSTEM ("ln -s $linkname $platdir/r$linkname")
+ if $linkname eq "pdfcrop"; # rpdfcrop -> pdfcrop
} else {
# Windows. If a shell script, skip. Else copy the wrapper.
next if $s =~ /\.sh$/;
my $w32_wrapper = "$Build/$build_tldir/w32_wrapper/runscript.exe";
&SYSTEM ("$CP $w32_wrapper $platdir/$linkname.exe");
+ &SYSTEM ("$CP $w32_wrapper $platdir/r$linkname.exe")
+ if $linkname eq "pdfcrop"; # rpdfcrop.exe
}
}
}