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.
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