summaryrefslogtreecommitdiff
path: root/configpm
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-03-13 20:49:55 +0000
committerNicholas Clark <nick@ccl4.org>2006-03-13 20:49:55 +0000
commit4d20abadde4f672afab51524d4ff00c7c65bbed7 (patch)
treefc44708cbe61dedec35d3a130d6755123901e905 /configpm
parenta092d240526911dd8284a018cd9aceb03393940a (diff)
downloadperl-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-xconfigpm25
1 files changed, 23 insertions, 2 deletions
diff --git a/configpm b/configpm
index ccf7816f29..de4a69445c 100755
--- a/configpm
+++ b/configpm
@@ -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!^\.\.\./!;
}