Change 33386 by [EMAIL PROTECTED] on 2008/02/27 13:43:27

        Subject: Fwd: CPAN Upload: Y/YV/YVES/ExtUtils-Install-1.45.tar.gz
        From: demerphq <[EMAIL PROTECTED]>
        Date: Wed, 27 Feb 2008 14:06:29 +0100
        Message-ID: <[EMAIL PROTECTED]>
        
        Upgrade to ExtUtils-Install-1.45 to fix [cpan #32813]

Affected files ...

... //depot/perl/lib/ExtUtils/Install.pm#55 edit

Differences ...

==== //depot/perl/lib/ExtUtils/Install.pm#55 (text) ====
Index: perl/lib/ExtUtils/Install.pm
--- perl/lib/ExtUtils/Install.pm#54~31837~      2007-09-10 01:34:08.000000000 
-0700
+++ perl/lib/ExtUtils/Install.pm        2008-02-27 05:43:27.000000000 -0800
@@ -3,7 +3,7 @@
 use strict;
 
 use vars qw(@ISA @EXPORT $VERSION $MUST_REBOOT %Config);
-$VERSION = '1.44';
+$VERSION = '1.45';
 $VERSION = eval $VERSION;
 
 use AutoSplit;
@@ -436,7 +436,9 @@
     my $path='';
     my @make;
     while (@dirs) {
-        $dir = File::Spec->catdir($vol,@dirs);
+        $dir = File::Spec->catdir(@dirs);
+        $dir = File::Spec->catpath($vol,$dir,'') 
+                if defined $vol and length $vol;
         next if ( $dir eq $path );
         if ( ! -e $dir ) {
             unshift @make,$dir;
End of Patch.

Reply via email to