[blead-227-gbd2db5d] mkppport using catfile for catdir
[email protected] (John Malmberg)
| Newsgroups | perl.perl5.porters,perl.vmsperl |
|---|---|
| Message-ID | <[email protected]> |
Small fix, mkppport is using catfile instead of catdir. -John [email protected]
mkppport.gdiff
(text/plain, 332 B)
--- /rsync_root/perl/mkppport Mon Aug 14 15:30:29 2006
+++ mkppport Wed Dec 31 23:10:49 2008
@@ -12,7 +12,7 @@
my $rootdir = dirname($0);
-unshift @INC, File::Spec->catfile($rootdir, 't', 'lib');
+unshift @INC, File::Spec->catdir($rootdir, 't', 'lib');
eval q{ use MakeMaker::Test::Utils qw( which_perl ) };
$@ and die $@;