From: gfx Date: Tue, 15 Sep 2009 03:51:46 +0000 (+0900) Subject: Use mkpath instead of make_path in Makefile.PL X-Git-Tag: 0.32~60 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=6d68b10082516969f48ca15626727aacfe95c836 Use mkpath instead of make_path in Makefile.PL --- diff --git a/Makefile.PL b/Makefile.PL index 5f13219..aa7620c 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -65,7 +65,7 @@ sub create_moose_compatibility_test { my $dirname = File::Basename::dirname($_); my $tmpdir = File::Spec->catfile('xt', 'compatibility', $dirname); - File::Path::make_path($tmpdir); + File::Path::mkpath($tmpdir); my $tmpfile = File::Spec->catfile($tmpdir, $basename); open my $wfh, '>', $tmpfile or die $!;