Skip to content

Commit

Permalink
Sidestep some Module::Install fail
Browse files Browse the repository at this point in the history
  • Loading branch information
hinrik committed Apr 28, 2010
1 parent 403ad45 commit daf3a0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
@@ -1,6 +1,7 @@
0.20
- Fixed an error in a regex when matching Synopses et al
- Added (simplified) parsing of some u4x terms
- Prevent duplicate test error from Module::Install

0.19 Wed Aug 12 17:42:49 GMT 2009
- Depend on a Pod::Text::Ansi 0.04
Expand Down
6 changes: 5 additions & 1 deletion Makefile.PL
Expand Up @@ -3,6 +3,11 @@ use warnings;
use inc::Module::Install;
use 5.006;

my $mi = '0.94';
if ($inc::Module::Install::VERSION lt $mi) {
die "Your Module::Install is older than $mi, please upgrade it";
}

name ('grok');
perl_version ('5.006');
author ('Hinrik Örn Sigurðsson <hinrik.sig@gmail.com>');
Expand Down Expand Up @@ -31,6 +36,5 @@ test_requires ('Test::Script' => '0');
#author_requires('Test::Pod' => '0');
#author_requires('Test::Pod::Coverage' => '0');
tests_recursive();
recursive_author_tests('xt');
WriteAll();

0 comments on commit daf3a0c

Please sign in to comment.