John E. Malmberg [Fri, 31 Aug 2007 00:21:52 +0000 (19:21 -0500)]
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-id: <
46D7A570.4050801@qsl.net>
catdir was used where catfile was meant.
p4raw-id: //depot/perl@31776
# @{$ae->files};
for my $file ( @{$ae->files} ) {
- my $path = File::Spec->rel2abs( File::Spec->catdir($to, $file) );
+ my $path = File::Spec->rel2abs( File::Spec->catfile($to, $file) );
$self->_mode_plus_w( file => $path );
}