fix Stash.t for VMS
Craig A. Berry [Thu, 2 Aug 2001 23:15:24 +0000 (18:15 -0500)]
Message-Id: <5.1.0.14.0.20010802230843.03530e58@mail.mac.com>

p4raw-id: //depot/perl@11563

ext/B/Stash.t

index d302d2e..ba58d17 100644 (file)
@@ -23,6 +23,7 @@ my $Is_VMS = $^O eq 'VMS';
 my $Is_MacOS = $^O eq 'MacOS';
 
 my $path = join " ", map { qq["-I$_"] } @INC;
+$path = '"-I../lib" "-Iperl_root:[lib]"' if $Is_VMS;   # gets too long otherwise
 my $redir = $Is_MacOS ? "" : "2>&1";
 
 
@@ -45,8 +46,7 @@ if ($Is_VMS) {
     no strict 'vars';
     use vars '$OS2::is_aout';
 }
-if (($Config{static_ext} eq ' ' ||
-     ($Config{static_ext} eq 'Socket' && $Is_VMS))
+if ((($Config{static_ext} eq ' ') || ($Config{static_ext} eq ''))
     && !($^O eq 'os2' and $OS2::is_aout)
        ) {
     if (ord('A') == 193) { # EBCDIC sort order is qw(a A) not qw(A a)