From: Dan Brook Date: Mon, 3 May 2010 20:39:04 +0000 (+0100) Subject: De-bareword author_* in Makefile.PL. X-Git-Tag: 0.001004~4^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FGitalist.git;a=commitdiff_plain;h=2d542fb31a48a2d66eb2bf6018aa118ddbb646f1 De-bareword author_* in Makefile.PL. With a totally bare perl install this Makefile.PL won't even run. FTFY. --- diff --git a/Changes b/Changes index 0087068..82ea77c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ This file documents the revision history for Perl extension Gitalist. + - Fixed author_* barewords in Makefile.PL. + 0.001003 2010-04-21 - Added folder / file icons in tree view (Foxtons) - Added favicon diff --git a/Makefile.PL b/Makefile.PL index dea8818..d73b0aa 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -111,13 +111,13 @@ if ($Module::Install::AUTHOR) { } if ($ENV{GITALIST_RELEASE_TESTING}) { - author_tests 't/author'; - author_requires 'Test::NoTabs'; - author_requires 'Test::Pod' => '1.14'; - author_requires 'Test::Pod::Coverage' => '1.04'; - author_requires 'Test::WWW::Mechanize::Catalyst' => '0.51'; - author_requires 'HTML::TreeBuilder::XPath'; - author_requires 'WWW::Mechanize::TreeBuilder'; + author_tests('t/author'); + author_requires('Test::NoTabs'); + author_requires('Test::Pod' => '1.14'); + author_requires('Test::Pod::Coverage' => '1.04'); + author_requires('Test::WWW::Mechanize::Catalyst' => '0.51'); + author_requires('HTML::TreeBuilder::XPath'); + author_requires('WWW::Mechanize::TreeBuilder'); } install_script glob('script/*.pl');