diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-02-05 13:55:07 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-02-05 13:55:07 +0000 |
commit | e2c1c280e8ae4a1005c41c45cd7feaff78272738 (patch) | |
tree | 27de06743494c08f621d1b63397d4460adcac51c /installperl | |
parent | 7ad017a8809c03aa288ac99952c8d4599b17f858 (diff) | |
download | perl-e2c1c280e8ae4a1005c41c45cd7feaff78272738.tar.gz |
Move XSSymSet.pm to lib/ExtUtils/, but only install it on VMS.
This reduces the number of places with special-casing logic.
Diffstat (limited to 'installperl')
-rwxr-xr-x | installperl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/installperl b/installperl index 93c0c9fa67..8d5573db44 100755 --- a/installperl +++ b/installperl @@ -742,6 +742,8 @@ sub installlib { $name = "$dir/$name" if $dir ne ''; + return if $name eq 'ExtUtils/XSSymSet.pm' and !$Is_VMS; + my $installlib = $installprivlib; if ($dir =~ /^auto/ || ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) || |