Skip Menu |

This queue is for tickets about the Wetware-Test-CreateTestSuite CPAN distribution.

Report information
The Basics
Id: 84592
Status: new
Priority: 0/
Queue: Wetware-Test-CreateTestSuite

People
Owner: Nobody in particular
Requestors: mschwern [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Typo in dependency
There's a small typo in the Build.PL and the dependency on "Readonly" has the wrong casing.

This might work on operating systems with case-insensitive file systems, such as OS X and Windows, but will fail on others like most Linux.

Patch attached.
Subject: 0001-Fix-the-casing-on-the-Readonly-requirement.patch
From d00d2d6fa6e227de8ff64659a32e22ec55a3d863 Mon Sep 17 00:00:00 2001 From: "Michael G. Schwern" <schwern@pobox.com> Date: Fri, 12 Apr 2013 11:06:48 +0100 Subject: [PATCH] Fix the casing on the Readonly requirement. --- Build.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git Build.PL Build.PL index a74c47e..550dafd 100644 --- Build.PL +++ Build.PL @@ -14,7 +14,7 @@ my $builder = Module::Build->new( 'File::Find' => 0, 'File::Path' => 0, 'File::Spec' => 0, - 'ReadOnly' => 0, + 'Readonly' => 0, 'Wetware::Test' => 0.06, 'Wetware::CLI' => 0.06, }, -- 1.8.0.3