summaryrefslogtreecommitdiff
path: root/dist/XSLoader
diff options
context:
space:
mode:
authorSébastien Aperghis-Tramoni <sebastien@aperghis.net>2016-07-05 14:53:08 -0700
committerFather Chrysostomos <sprout@cpan.org>2016-07-05 17:54:27 -0700
commitae635bbffa4769051671b9832a7472b9d977c198 (patch)
tree8bc0988ee3515e583b41a7d65392c7bfb01811f1 /dist/XSLoader
parentd06c8f869698f7905df974ab8bafb703a5438fc1 (diff)
downloadperl-ae635bbffa4769051671b9832a7472b9d977c198.tar.gz
Synchronize blead with CPAN XSLoader 0.22
Diffstat (limited to 'dist/XSLoader')
-rw-r--r--dist/XSLoader/XSLoader_pm.PL2
-rw-r--r--dist/XSLoader/t/XSLoader.t4
2 files changed, 3 insertions, 3 deletions
diff --git a/dist/XSLoader/XSLoader_pm.PL b/dist/XSLoader/XSLoader_pm.PL
index 2efb99e648..09f9d4b11e 100644
--- a/dist/XSLoader/XSLoader_pm.PL
+++ b/dist/XSLoader/XSLoader_pm.PL
@@ -255,7 +255,7 @@ XSLoader - Dynamically load C libraries into Perl code
=head1 VERSION
-Version 0.17
+Version 0.22
=head1 SYNOPSIS
diff --git a/dist/XSLoader/t/XSLoader.t b/dist/XSLoader/t/XSLoader.t
index 1e86faa9ed..d3538b849c 100644
--- a/dist/XSLoader/t/XSLoader.t
+++ b/dist/XSLoader/t/XSLoader.t
@@ -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);
}