From: Craig A. Berry Date: Thu, 19 Jan 2006 04:55:19 +0000 (+0000) Subject: find_perl() must be after environment initialization X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=14e937523449bdc451205f81b880b938be941215;p=p5sagit%2Fp5-mst-13.2.git find_perl() must be after environment initialization p4raw-id: //depot/perl@26913 --- diff --git a/ext/Devel/PPPort/t/ppphtest.t b/ext/Devel/PPPort/t/ppphtest.t index d6dc344..4dc7f48 100644 --- 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";