summaryrefslogtreecommitdiff
path: root/installperl
diff options
context:
space:
mode:
authorReini Urban <rurban@x-ray.at>2007-08-14 10:59:58 +0200
committerAbhijit Menon-Sen <ams@wiw.org>2007-08-14 07:04:16 +0000
commit9c7c26c78ec61474f8f3dcb664cb555dbb26ff7b (patch)
tree308be26b40d366d1d6e0426a10ac7e869b61d428 /installperl
parent4f3b19ea9f1065e1d9d263b4c07fca1ba8f29276 (diff)
downloadperl-9c7c26c78ec61474f8f3dcb664cb555dbb26ff7b.tar.gz
Re: [PATCH] get rid of cygwin perlld and ld2 - installperl also
Message-Id: <46C152EE.2080506@x-ray.at> p4raw-id: //depot/perl@31711
Diffstat (limited to 'installperl')
-rwxr-xr-xinstallperl31
1 files changed, 0 insertions, 31 deletions
diff --git a/installperl b/installperl
index 0f7e6ebaa3..e9d2b59b12 100755
--- a/installperl
+++ b/installperl
@@ -285,37 +285,6 @@ if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin) {
my $v_e_r_s = $ver; $v_e_r_s =~ tr/./_/;
$perldll =~ s/(\..*)?$/$v_e_r_s.$dlext/;
$perldll =~ s/^lib/cyg/;
- if ($Config{useshrplib} eq 'true') {
- # install ld2 and perlld as well
- foreach ('ld2', 'perlld') {
- safe_unlink("$installbin/$_");
- copy("$_", "$installbin/$_");
- chmod(0755, "$installbin/$_");
- $packlist->{"$installbin/$_"} = { type => 'file' };
- };
- open (LD2, ">$installbin/ld2");
- print LD2 <<SHELL;
-#!/bin/sh
-#
-# ld wrapper, passes all args to perlld;
-#
-for trythis in $installbin/perl
-do
- if [ -x \$trythis ]
- then
- \$trythis $installbin/perlld "\$\@"
- exit \$?
- fi
-done
-# hard luck!
-echo I see no perl executable around there
-echo perl is required to build dynamic libraries
-echo look if the path to perl in /bin/ld2 is correct
-exit 1
-SHELL
- close LD2;
- chmod(0755, "$installbin/ld2");
- };
} else {
$perldll = 'perl59.' . $dlext;
}