summaryrefslogtreecommitdiff
path: root/cpan
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2015-01-08 21:50:05 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2015-01-08 21:50:05 +0000
commit2eb94604fbdeffdc3cdbda7a8cc805ce4e57a37a (patch)
tree502a2681a4eccf50f45073b02a0df72a835d3252 /cpan
parentca949e9c3c10048fd3c2829b96293e6139846dcc (diff)
downloadperl-2eb94604fbdeffdc3cdbda7a8cc805ce4e57a37a.tar.gz
Update ExtUtils-Command to CPAN version 1.20
[DELTA] 1.20 Thu, Jan 8, 2015 - Skip some tests on Haiku as well
Diffstat (limited to 'cpan')
-rw-r--r--cpan/ExtUtils-Command/lib/ExtUtils/Command.pm2
-rw-r--r--cpan/ExtUtils-Command/t/eu_command.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpan/ExtUtils-Command/lib/ExtUtils/Command.pm b/cpan/ExtUtils-Command/lib/ExtUtils/Command.pm
index c87399701c..7f3161a73a 100644
--- a/cpan/ExtUtils-Command/lib/ExtUtils/Command.pm
+++ b/cpan/ExtUtils-Command/lib/ExtUtils/Command.pm
@@ -7,7 +7,7 @@ use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION);
@ISA = qw(Exporter);
@EXPORT = qw(cp rm_f rm_rf mv cat eqtime mkpath touch test_f test_d chmod
dos2unix);
-$VERSION = '1.19';
+$VERSION = '1.20';
my $Is_VMS = $^O eq 'VMS';
my $Is_VMS_mode = $Is_VMS;
diff --git a/cpan/ExtUtils-Command/t/eu_command.t b/cpan/ExtUtils-Command/t/eu_command.t
index aa9fcb80b7..f5ba647f19 100644
--- a/cpan/ExtUtils-Command/t/eu_command.t
+++ b/cpan/ExtUtils-Command/t/eu_command.t
@@ -135,7 +135,7 @@ BEGIN {
SKIP: {
if ($^O eq 'amigaos' || $^O eq 'os2' || $^O eq 'MSWin32' ||
$^O eq 'NetWare' || $^O eq 'dos' || $^O eq 'cygwin' ||
- $^O eq 'MacOS'
+ $^O eq 'MacOS' || $^O eq 'haiku'
) {
skip( "different file permission semantics on $^O", 5);
}