diff options
author | Dan Sugalski <dan@sidhe.org> | 1999-04-09 09:16:39 -0700 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-07 09:38:11 +0000 |
commit | adeacccf052801eeeff5725e23421191671ff8e5 (patch) | |
tree | a2dd2466db04c5fe493e24e8cb50d8329ec7d4c2 /lib | |
parent | 994e9bc0b681e44c7053351dd3b29d403ce44b95 (diff) | |
download | perl-adeacccf052801eeeff5725e23421191671ff8e5.tar.gz |
Bug in MM_VMS.PM
Message-Id: <3.0.6.32.19990409161639.02ea1050@ous.edu>
p4raw-id: //depot/perl@3322
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/MM_VMS.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/MM_VMS.pm b/lib/ExtUtils/MM_VMS.pm index 0129191256..c77eebe50f 100644 --- a/lib/ExtUtils/MM_VMS.pm +++ b/lib/ExtUtils/MM_VMS.pm @@ -2315,7 +2315,7 @@ $(MAP_TARGET) :: $(MAKE_APERL_FILE) else { $extralist = ''; } # Let ExtUtils::Liblist find the necessary libs for us (but skip PerlShr) # that's what we're building here). - push @optlibs, grep { !/PerlShr/i } split +($self->ext())[2]; + push @optlibs, grep { !/PerlShr/i } split ' ', +($self->ext())[2]; if ($libperl) { unless (-f $libperl || -f ($libperl = $self->catfile($Config{'installarchlib'},'CORE',$libperl))) { print STDOUT "Warning: $libperl not found\n"; |