diff options
author | Craig A. Berry <craigberry@mac.com> | 2004-10-14 05:09:41 -0500 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-10-14 18:00:04 +0000 |
commit | d8d9a45565468f5ed50aa4257f7366c751a44183 (patch) | |
tree | a7b89a1aad7d6313ec15d67861c98509659b2b9f /ext | |
parent | 06cd8c16b6bacaad231fad0a4a04b54ca0a48760 (diff) | |
download | perl-d8d9a45565468f5ed50aa4257f7366c751a44183.tar.gz |
Re: [NOT OK] 23353 OpenVMS 7.2 VAX
From: "Craig A. Berry" <craigberry@mac.com>
Message-ID: <416E96B5.5020100@mac.com>
p4raw-id: //depot/perl@23367
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Devel/PPPort/parts/inc/ppphtest | 2 | ||||
-rw-r--r-- | ext/Devel/PPPort/t/ppphtest.t | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/Devel/PPPort/parts/inc/ppphtest b/ext/Devel/PPPort/parts/inc/ppphtest index 58de18f5b5..8dd045f36e 100644 --- a/ext/Devel/PPPort/parts/inc/ppphtest +++ b/ext/Devel/PPPort/parts/inc/ppphtest @@ -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'; } } diff --git a/ext/Devel/PPPort/t/ppphtest.t b/ext/Devel/PPPort/t/ppphtest.t index f23cfa8829..e1cf0eddc3 100644 --- a/ext/Devel/PPPort/t/ppphtest.t +++ b/ext/Devel/PPPort/t/ppphtest.t @@ -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'; } } |