Upgrade to Devel::PPPort 3.00_03.
Marcus Holland-Moritz [Fri, 20 Aug 2004 13:18:08 +0000 (13:18 +0000)]
p4raw-id: //depot/perl@23229

ext/Devel/PPPort/Changes
ext/Devel/PPPort/META.yml
ext/Devel/PPPort/PPPort.pm
ext/Devel/PPPort/PPPort_pm.PL
ext/Devel/PPPort/parts/inc/ppphtest
ext/Devel/PPPort/t/ppphtest.t

index 961f742..de5fc44 100755 (executable)
@@ -1,3 +1,8 @@
+3.00_03 - 2004-08-20
+
+    * make sure the @INC path is kept up-to-date when changing
+      directories while running in the core test suite
+
 3.00_02 - 2004-08-19
 
     * remove PPPort.pm and PPPort.xs dependencies from Makefile.PL,
index 2269a2b..4a1781b 100644 (file)
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         Devel-PPPort
-version:      3.00_02
+version:      3.00_03
 version_from: PPPort_pm.PL
 installdirs:  perl
 requires:
index d3da198..0a3bb04 100644 (file)
@@ -866,7 +866,7 @@ require DynaLoader;
 use strict;
 use vars qw($VERSION @ISA $data);
 
-$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.00_02 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' };
+$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.00_03 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' };
 
 @ISA = qw(DynaLoader);
 
index 1968061..ed6f6a5 100644 (file)
@@ -473,7 +473,7 @@ require DynaLoader;
 use strict;
 use vars qw($VERSION @ISA $data);
 
-$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.00_02 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' };
+$VERSION = do { my @r = '$Snapshot: /Devel-PPPort/3.00_03 $' =~ /(\d+\.\d+(?:_\d+)?)/; @r ? $r[0] : '9.99' };
 
 @ISA = qw(DynaLoader);
 
index f672dff..9b4bbdf 100644 (file)
@@ -1,8 +1,8 @@
 ################################################################################
 ##
-##  $Revision: 19 $
+##  $Revision: 20 $
 ##  $Author: mhx $
-##  $Date: 2004/08/17 22:04:17 +0200 $
+##  $Date: 2004/08/20 15:29:23 +0200 $
 ##
 ################################################################################
 ##
@@ -29,7 +29,10 @@ mkpath($tmp) or die "mkpath $tmp: $!\n";
 chdir($tmp) or die "chdir $tmp: $!\n";
 
 if ($ENV{'PERL_CORE'}) {
-  $inc = '-I../../lib' if -d '../../lib';
+  if (-d '../../lib') {
+    $inc = '-I../../lib';
+    unshift @INC, '../../lib';
+  }
 }
 if ($perl =~ m!^\./!) {
   $perl = ".$perl";
index 529bf3b..52e18ef 100644 (file)
@@ -47,7 +47,10 @@ mkpath($tmp) or die "mkpath $tmp: $!\n";
 chdir($tmp) or die "chdir $tmp: $!\n";
 
 if ($ENV{'PERL_CORE'}) {
-  $inc = '-I../../lib' if -d '../../lib';
+  if (-d '../../lib') {
+    $inc = '-I../../lib';
+    unshift @INC, '../../lib';
+  }
 }
 if ($perl =~ m!^\./!) {
   $perl = ".$perl";