This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [NOT OK] 23353 OpenVMS 7.2 VAX
authorCraig A. Berry <craigberry@mac.com>
Thu, 14 Oct 2004 10:09:41 +0000 (05:09 -0500)
committerMarcus Holland-Moritz <mhx-perl@gmx.net>
Thu, 14 Oct 2004 18:00:04 +0000 (18:00 +0000)
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <416E96B5.5020100@mac.com>

p4raw-id: //depot/perl@23367

ext/Devel/PPPort/parts/inc/ppphtest
ext/Devel/PPPort/t/ppphtest.t

index 58de18f..8dd045f 100644 (file)
@@ -30,7 +30,7 @@ chdir($tmp) or die "chdir $tmp: $!\n";
 
 if ($ENV{'PERL_CORE'}) {
   if (-d '../../lib') {
-    $inc = '-I../../lib';
+    $inc = $^O eq 'VMS' ? '-"I../../lib"' : '-I../../lib';
     unshift @INC, '../../lib';
   }
 }
index f23cfa8..e1cf0ed 100644 (file)
@@ -48,7 +48,7 @@ chdir($tmp) or die "chdir $tmp: $!\n";
 
 if ($ENV{'PERL_CORE'}) {
   if (-d '../../lib') {
-    $inc = '-I../../lib';
+    $inc = $^O eq 'VMS' ? '-"I../../lib"' : '-I../../lib';
     unshift @INC, '../../lib';
   }
 }