diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-03-13 20:49:55 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-03-13 20:49:55 +0000 |
commit | 4d20abadde4f672afab51524d4ff00c7c65bbed7 (patch) | |
tree | fc44708cbe61dedec35d3a130d6755123901e905 /configpm | |
parent | a092d240526911dd8284a018cd9aceb03393940a (diff) | |
download | perl-4d20abadde4f672afab51524d4ff00c7c65bbed7.tar.gz |
First stab at rather shaky Configure support for relocatable @INC.
Seems to be installing rather more that it's supposed to be.
p4raw-id: //depot/perl@27490
Diffstat (limited to 'configpm')
-rwxr-xr-x | configpm | 25 |
1 files changed, 23 insertions, 2 deletions
@@ -298,13 +298,34 @@ EOT my @need_relocation; if (fetch_string({},'userelocatableinc')) { - foreach my $what (qw(archlibexp + foreach my $what (qw(prefixexp + + archlibexp + html1direxp + html3direxp + man1direxp + man3direxp privlibexp + scriptdirexp sitearchexp + sitebinexp + sitehtml1direxp + sitehtml3direxp sitelibexp - sitelib_stem + siteman1direxp + siteman3direxp + sitescriptexp vendorarchexp + vendorbinexp + vendorhtml1direxp + vendorhtml3direxp vendorlibexp + vendorman1direxp + vendorman3direxp + vendorscriptexp + + siteprefixexp + sitelib_stem vendorlib_stem)) { push @need_relocation, $what if fetch_string({}, $what) =~ m!^\.\.\./!; } |