This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
455baeb
)
find_perl() must be after environment initialization
author
Craig A. Berry
<craigberry@mac.com>
Thu, 19 Jan 2006 04:55:19 +0000
(
04:55
+0000)
committer
Craig A. Berry
<craigberry@mac.com>
Thu, 19 Jan 2006 04:55:19 +0000
(
04:55
+0000)
p4raw-id: //depot/perl@26913
ext/Devel/PPPort/t/ppphtest.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/Devel/PPPort/t/ppphtest.t
b/ext/Devel/PPPort/t/ppphtest.t
index
d6dc344
..
4dc7f48
100644
(file)
--- a/
ext/Devel/PPPort/t/ppphtest.t
+++ b/
ext/Devel/PPPort/t/ppphtest.t
@@
-49,9
+49,9
@@
use Config;
my $tmp = 'ppptmp';
my $inc = '';
-my $perl = find_perl();
my $isVMS = $^O eq 'VMS';
my $isMAC = $^O eq 'MacOS';
+my $perl = find_perl();
rmtree($tmp) if -d $tmp;
mkpath($tmp) or die "mkpath $tmp: $!\n";