Synchronize blead with CPAN XSLoader 0.22
authorSébastien Aperghis-Tramoni <[email protected]>
Tue, 5 Jul 2016 21:53:08 +0000 (14:53 -0700)
committerFather Chrysostomos <[email protected]>
Wed, 6 Jul 2016 00:54:27 +0000 (17:54 -0700)
dist/XSLoader/XSLoader_pm.PL
dist/XSLoader/t/XSLoader.t

index 2efb99e..09f9d4b 100644 (file)
@@ -255,7 +255,7 @@ XSLoader - Dynamically load C libraries into Perl code
 
 =head1 VERSION
 
-Version 0.17
+Version 0.22
 
 =head1 SYNOPSIS
 
index 1e86faa..d3538b8 100644 (file)
@@ -130,7 +130,7 @@ SKIP: {
   skip "File::Path not available", 1
     unless eval { require File::Path };
   my $name = "phooo$$";
-  File::Path::make_path("$name/auto/Foo/Bar");
+  File::Path::mkpath("$name/auto/Foo/Bar");
   open my $fh,
     ">$name/auto/Foo/Bar/Bar.$Config::Config{'dlext'}";
   close $fh;
@@ -148,5 +148,5 @@ END
  the_test:
   ok $fell_back,
     'XSLoader will not load relative paths based on (caller)[1]';
-  File::Path::remove_tree($name);
+  File::Path::rmtree($name);
 }